Next Previous Up Top Contents Index

6.6 DUIM-Graphics Module

draw-points

Generic function

Summary

Draws a sequence of points at the specified positions.

Signature

draw-points drawable coord-seq => ()
draw-points* drawable points => ()

Arguments

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

The following argument is specific to draw-points.

coord-seq
An instance of type limited(<sequence>, of: <coordinate>).

The following argument is specific to draw-points*.

points
An instance of type limited(<sequence>, of: <point>).

Values

None.

Library

duim-graphics

Module

duim-graphics

Description

Draws a sequence of points on drawable at the specified positions.

The function draw-points* is identical to draw-points, 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-lines, page 423

draw-point, page 426

draw-rectangles, page 431


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index