26 lines
278 B
Markdown
26 lines
278 B
Markdown
# Shift
|
||
|
||
Performs the relative displacement (shift) of the area coordinates.
|
||
|
||
```
|
||
void Shift(
|
||
const int dx, // delta X
|
||
const int dy // delta Y
|
||
)
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
dx
|
||
|
||
[in] Delta X.
|
||
|
||
dy
|
||
|
||
[in] Delta Y.
|
||
|
||
Return Value
|
||
|
||
None.
|