FileDocCategorySizeDatePackage
ComposePathEffect.javaAPI DocAndroid 5.1 API1201Thu Mar 12 22:22:30 GMT 2015android.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 longnativeCreate(long nativeOuterpe, long nativeInnerpe)