anymap-orow-set!

Synopsis

(anymap-orow-set! anymap orow-value)

Parameters

  • anymap: Either a bitmap, a greymap, a 16 bit graymap or a colormap
  • orow-value:

Description

The procedures bitmap-orow-set!, greymap-orow-set!, graymap-orow-set! and colormap-orow-set! are aliases being bound to this primitive procedure for compatibility.

Side Effects

The orow value of the anymap is set to the supplied value.

Return Value

The new orow value is returned.

Example

> (define bitmap (bitmap-create 100 100))
bitmap
> bitmap
#<bitmap orow:-1 ocol:-1 xres:-1 yres:-1 h:100 w:100>
> (anymap-orow-set! bitmap 500)
500
> bitmap
#<bitmap orow:500 ocol:-1 xres:-1 yres:-1 h:100 w:100>