Enumeration

ClutterPathNodeType

Declaration

enum Clutter.PathNodeType

Description [src]

Types of nodes in a ClutterPath.

Available since:1.0

Members

Name Description
CLUTTER_PATH_MOVE_TO

Jump to the given position.

CLUTTER_PATH_LINE_TO

Create a line from the last node to the given position.

CLUTTER_PATH_CURVE_TO

Bezier curve using the last position and three control points.

CLUTTER_PATH_CLOSE

Create a line from the last node to the last CLUTTER_PATH_MOVE_TO node.

CLUTTER_PATH_REL_MOVE_TO

Same as CLUTTER_PATH_MOVE_TO but with coordinates relative to the last node.

CLUTTER_PATH_REL_LINE_TO

Same as CLUTTER_PATH_LINE_TO but with coordinates relative to the last node.

CLUTTER_PATH_REL_CURVE_TO

Same as CLUTTER_PATH_CURVE_TO but with coordinates relative to the last node.