PathSegment.Type
-
Cmn
enum PathSegment.Type : Enum
Type of a given segment in a Path, either a command (Type.Move, Type.Close, Type.Done) or a curve (Type.Line, Type.Cubic, Type.Quadratic, Type.Conic).
Summary
Enum Values |
|
|---|---|
Close |
Close command, close the current contour by joining the last point added to the path with the first point of the current contour. |
Conic |
Conic curve, the path segment contains 3 points in the following order: |
Cubic |
Cubic curve, the path segment contains 4 points in the following order: |
Done |
Done command, which indicates that no further segment will be found in the path. |
Line |
Line curve, the path segment contains 2 points indicating the two extremities of the line. |
Move |
Move command, the path segment contains 1 point indicating the move destination. |
Quadratic |
Quadratic curve, the path segment contains 3 points in the following order: |
Public functions |
||
|---|---|---|
PathSegment.Type |
Returns the enum constant of this type with the specified name. |
Cmn
|
Array<PathSegment.Type> |
values()Returns an array containing the constants of this enum type, in the order they're declared. |
Cmn
|
Public properties |
||
|---|---|---|
EnumEntries<PathSegment.Type> |
Returns a representation of an immutable list of all enum entries, in the order they're declared. |
Cmn
|
Enum Values
Close
val PathSegment.Type.Close: PathSegment.Type
Close command, close the current contour by joining the last point added to the path with the first point of the current contour. The segment does not contain any point. The weight is set 0.0f and not meaningful.
Conic
val PathSegment.Type.Conic: PathSegment.Type
Conic curve, the path segment contains 3 points in the following order:
-
Start point
-
Control point
-
End point
The curve is weighted by the weight property.
The conic weight determines the amount of influence conic control point has on the curve. If the weight is less than one, the curve represents an elliptical section. If the weight is greater than one, the curve represents a hyperbolic section. If the weight equals one, the curve represents a parabolic section.
Cubic
val PathSegment.Type.Cubic: PathSegment.Type
Cubic curve, the path segment contains 4 points in the following order:
-
Start point
-
First control point
-
Second control point
-
End point
The weight is set 0.0f and not meaningful.
Done
val PathSegment.Type.Done: PathSegment.Type
Done command, which indicates that no further segment will be found in the path. It typically indicates the end of an iteration over a path and can be ignored.
Line
val PathSegment.Type.Line: PathSegment.Type
Line curve, the path segment contains 2 points indicating the two extremities of the line. The weight is set 0.0f and not meaningful.
Move
val PathSegment.Type.Move: PathSegment.Type
Move command, the path segment contains 1 point indicating the move destination. The weight is set 0.0f and not meaningful.
Quadratic
val PathSegment.Type.Quadratic: PathSegment.Type
Quadratic curve, the path segment contains 3 points in the following order:
-
Start point
-
Control point
-
End point
The weight is set 0.0f and not meaningful.
Public functions
valueOf
fun valueOf(value: String): PathSegment.Type
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
| Throws | |
|---|---|
kotlin.IllegalArgumentException |
if this enum type has no constant with the specified name |
values
fun values(): Array<PathSegment.Type>
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
Public properties
entries
val entries: EnumEntries<PathSegment.Type>
Returns a representation of an immutable list of all enum entries, in the order they're declared.
This method may be used to iterate over the enum entries.