CanvasOperationMoveTo
Type
statement
Summary
Move to a point on a canvas.
Syntax
move to <mPoint> on <mCanvas>
Description
Moves to mPoint on the current path of mCanvas
Parameters
Name | Type | Description |
---|---|---|
mCanvas | An expression which evaluates to a canvas. | |
mPoint | An expression which evaluates to a point. |
Examples
// move to a point on the canvas
move to point [0,50] on this canvas
// add a line to the canvas path
line to point [50,50] on this canvas
// stroke the canvas path
stroke this canvas