Next Previous Up Top Contents Index

6.6 DUIM-Graphics Module

draw-point

Generic function

Summary

Draws a single point at the specified position.

Signature

draw-point drawable x y => ()
draw-point* drawable point => ()

Arguments

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

The following arguments are specific to draw-point.

x
The x coordinate.

y
The y coordinate.

The following argument is specific to draw-point*.

point
An instance of type <transform>.

Values

None.

Library

duim-graphics

Module

duim-graphics

Description

Draws a single point on drawable at (x,y).

The function draw-point* is identical to draw-point, 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

draw-line, page 421

draw-points, page 427


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index