Most visited

Recently visited

Added in API level 1

SumPathEffect

public class SumPathEffect
extends PathEffect

java.lang.Object
   ↳ android.graphics.PathEffect
     ↳ android.graphics.SumPathEffect


Summary

Public constructors

SumPathEffect(PathEffect first, PathEffect second)

Construct a PathEffect whose effect is to apply two effects, in sequence.

Inherited methods

From class android.graphics.PathEffect
From class java.lang.Object

Public constructors

SumPathEffect

Added in API level 1
SumPathEffect (PathEffect first, 
                PathEffect second)

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

Parameters
first PathEffect
second PathEffect

Hooray!