Next Previous Up Top Contents Index

6.6 DUIM-Graphics Module

draw-pixmap

Generic function

Summary

Draws the contents of the specified pixmap at the specified point.

Signature

draw-pixmap drawable pixmap x y #key function => ()
draw-pixmap* drawable pixmap point #key function => ()

Arguments

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

pixmap
An instance of type <pixmap>.

function
An instance of type <function>. Default value: $boole-1.

The following arguments are specific to draw-pixmap.

x
An instance of type <real>.

y
An instance of type <real>.

The following argument is specific to draw-pixmap*.

point
An instance of type <transform>.

Values

None.

Library

duim-graphics

Module

duim-graphics

Description

Draws the contents of pixmap on drawable at (x,y).

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

destroy-pixmap, page 412

draw-image, page 420

draw-text, page 434

make-pixmap, page 441


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index