Frees the memory used by the path.
Undocumented in source.
append to the path
Close the current subpath. This draws a line back to the previous move command.
get the command at given index
Add a cubic curve
Can be modified in place?
Get the coordinates of last move, IE. the start of current sub path
the length of the path in points
Line to x,y
Line to point
Move to x,y
Move to point
Copy rhs to this path, this handles self assignment, even if the rhs is a bunch of adaptors on top of the same path
get the point at given index
get a slice of the path, need to be careful as this doesnt do anything regarding aligning on full commands.
Add a quadratic curve
reset the path
Return the path source.
A 2D geometric path type.
The path is built from a sequence of path commands like moveTo or lineTo etc. Each new command uses the previous end point as its first point except for the moveTo command, that is used to start a new sub path. Each point in a command is tagged with a command type. The shared point between two commands is always tagged for the previous command.