Next Previous Up Top Contents Index

6.6 DUIM-Graphics Module

move-to

Generic function

Summary

Move the position in the current path on the specified drawable.

Signature

move-to drawable x y => ()
move-to* drawable point => ()

Arguments

drawable
An instance of type type-union(<sheet>, <medium>).

The following arguments are specific to move-to.

x
An instance of type <real>.

y
An instance of type <real>.

The following argument is specific to move-to*.

point
An instance of type <transform>.

Values

None.

Library

duim-graphics

Module

duim-graphics

Description

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.

See also

arc-to, page 404

curve-to, page 411

line-to, page 440


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index