Skip to content

Latest commit

 

History

History
49 lines (38 loc) · 1.17 KB

File metadata and controls

49 lines (38 loc) · 1.17 KB

SetOrigin

Description

Shifts the position of the document origin. The function does not modify the relative positions of objects in the document; the coordinate locations of objects, however, will change when the origin location is modified.

PROCEDURE SetOrigin(
				x : REAL;
				y : REAL);
def vs.SetOrigin(x, y):
    return None

Parameters

Name Type Description
x REAL X-offset from current origin.
y REAL Y-offset from current origin.

Remarks

The difference between this and SetOriginAbsolute is that this call shifts the origin the specified amount, where SetOriginAbsolute sets the origin to the specified values.

Examples

VectorScript

Rect(0,0,1,1);
SetOrigin(1,1);

{ Creates a rectangle with the bottom left point at coordinates (0,0), then moves the origin so that the top right point of the rectangle has coordinates (0,0). }

Python

See Also

VS Functions: SetOriginAbsolute

Version

Availability: from All Versions

Category