PathNodeType
Description:
[ CCode ( cprefix = "CLUTTER_PATH_" , type_id = "clutter_path_node_type_get_type ()" ) ]
[ Version ( since = "1.0" ) ]
public enum PathNodeType
Types of nodes in a Path.
Content:
Enum values:
- CLOSE - create a line from the last node
to the last MOVE_TO node.
- CURVE_TO - bezier curve using the
last position and three control points.
- LINE_TO - create a line from the last
node to the given position
- MOVE_TO - jump to the given position
- REL_CURVE_TO - same as
CURVE_TO but with coordinates relative to the last node.
- REL_LINE_TO - same as
LINE_TO but with coordinates relative to the last node.
- REL_MOVE_TO - same as
MOVE_TO but with coordinates relative to the last node.