PathOperation
Description:
[ CCode ( cprefix = "GSK_PATH_" , type_id = "gsk_path_operation_get_type ()" ) ]
[ Version ( since = "4.14" ) ]
public enum PathOperation
Path operations are used to describe the segments of a `GskPath`.
More values may be added in the future.
Content:
Enum values:
- CLOSE - A close operation ending the
current contour with a line back to the starting point.
- CONIC - A rational quadratic Bézier curve
with 3 points describing the start point, control point and end point of the curve.
- CUBIC - A curve-to operation describing a
cubic Bézier curve with 4 points describing the start point, the two control points and the end point of the curve.
- LINE - A line-to operation, with 2 points
describing the start and end point of a straight line.
- MOVE - A move-to operation, with 1 point
describing the target point.
- QUAD - A curve-to operation describing a
quadratic Bézier curve with 3 points describing the start point, the control point and the end point of the curve.