FileDocCategorySizeDatePackage
SumPathEffect.javaAPI DocAndroid 1.5 API1106Wed May 06 22:42:00 BST 2009android.graphics

SumPathEffect

public class SumPathEffect extends PathEffect

Fields Summary
Constructors Summary
public SumPathEffect(PathEffect first, PathEffect second)
Construct a PathEffect whose effect is to apply two effects, in sequence. (e.g. first(path) + second(path))

        native_instance = nativeCreate(first.native_instance,
                                       second.native_instance);
    
Methods Summary
private static native intnativeCreate(int first, int second)