Generic function
Move the position in the current path on the specified drawable.
move-to drawable x y => ()
move-to* drawable point => ()
The following arguments are specific to move-to.
<real>.
<real>.
The following argument is specific to move-to*.
<transform>.
duim-graphics
duim-graphics
Move the position in the current path on drawable to (x,y).
This function is used, in combination with line-to, curve-to, and arc-to, to define a path. The function start-path should be used to start the definition of the path, and end-path can be used to finish the definition.
The function move-to can be used several times within the definition of a path, allowing for the definition of several visually separate drawings within the same path.
The function move-to* is identical to move-to, except that it passes composite objects, rather than separate coordinates, in its arguments. You should be aware that using this function may lead to a loss of performance.