SumPathEffectpublic class SumPathEffect extends PathEffect
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 long | nativeCreate(long first, long second)
|
|