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 clutter_path_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
clutter_path_curve_to but with coordinates relative to the last node.
- REL_LINE_TO - same as
clutter_path_line_to but with coordinates relative to the last node.
- REL_MOVE_TO - same as
clutter_path_move_to but with coordinates relative to the last node.