Drw.map

Copy the drawable area to a window.

struct Drw
void
map
(
Window win
,
int x
,
int y
,
uint w
,
uint h
)

Parameters

win
Type: Window

Destination to copy to.

x
Type: int

Left edge of area to copy

y
Type: int

Top of area to copy

w
Type: uint

Width of area to copy

h
Type: uint

Height of area to copy

Examples

drw.map(win, 10, 10, 100, 100);

Meta