Module: Clutter::PathNodeType
- Defined in:
- (unknown)
Constant Summary collapse
- MOVE_TO =
jump to the given position
0 or :move_to
- LINE_TO =
create a line from the last node to the given position
1 or :line_to
- CURVE_TO =
bezier curve using the last position and three control points.
2 or :curve_to
- CLOSE =
create a line from the last node to the last %CLUTTER_PATH_MOVE_TO node.
3 or :close
- REL_MOVE_TO =
same as %CLUTTER_PATH_MOVE_TO but with coordinates relative to the last node.
32 or :rel_move_to
- REL_LINE_TO =
same as %CLUTTER_PATH_LINE_TO but with coordinates relative to the last node.
33 or :rel_line_to
- REL_CURVE_TO =
same as %CLUTTER_PATH_CURVE_TO but with coordinates relative to the last node.
34 or :rel_curve_to