Origin x,y  

Definition:

Allows you to offset all drawing commands from a designated location.

Parameter Description:


x = x offset value
y = y offset value

Command Description:

This command sets a point of origin for all subsequent drawing commands. This can be positive or negative.

Example:

; Origin example
Graphics 800,600,16

; Offset drawing options with origin command -200 in each direction
Origin -200,-200

; Wait for ESC to hit
While Not KeyHit(1)

; Draw an oval - SHOULD be at the exact center, but it isn't!
Oval 400,300,50,50,1
Wend

Index