PathUtils
class PathUtils
kotlin.Any | |
↳ | androidx.core.graphics.PathUtils |
A set of path-related utility methods.
Summary
Public methods | |
---|---|
static MutableCollection<PathSegment!> |
Flattens (or approximate) a |
static MutableCollection<PathSegment!> |
Flattens (or approximate) a |
Public methods
flatten
@RequiresApi(26) @NonNull static fun flatten(@NonNull path: Path): MutableCollection<PathSegment!>
Flattens (or approximate) a Path
with a series of line segments using a 0.5 pixel error. Note: This method requires API 26 or newer.
See Also
flatten
@RequiresApi(26) @NonNull static fun flatten(
@NonNull path: Path,
@FloatRange(0) error: Float
): MutableCollection<PathSegment!>
Flattens (or approximate) a Path
with a series of line segments. Note: This method requires API 26 or newer.
Parameters | |
---|---|
error |
Float: The acceptable error for a line on the Path. Typically this would be 0.5 so that the error is less than half a pixel. |
See Also