VS:SetOrigin/ja: Difference between revisions

From Vectorworks Developer
Jump to navigation Jump to search
m (1 revision)
 
m (1 revision)
 
(No difference)

Latest revision as of 14:38, 12 August 2013

.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix

Description

ファイルの原点位置を設定します。

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

Parameters

x REAL 原点のX座標
y REAL 原点のY座標

Example

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). }

Version

利用可能バージョン: MiniCAD

See Also

関連関数:

VS:SetOriginAbsolute

関連関数: [[VS:SetOriginAbsolute]]