FileDocCategorySizeDatePackage
ComposePathEffect.javaAPI DocAndroid 1.5 API1142Wed May 06 22:42:00 BST 2009android.graphics

ComposePathEffect

public class ComposePathEffect extends PathEffect

Fields Summary
Constructors Summary
public ComposePathEffect(PathEffect outerpe, PathEffect innerpe)
Construct a PathEffect whose effect is to apply first the inner effect and the the outer pathEffect (e.g. outer(inner(path))).

        native_instance = nativeCreate(outerpe.native_instance,
                                       innerpe.native_instance);
    
Methods Summary
private static native intnativeCreate(int outerpe, int innerpe)