Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 828 Bytes

File metadata and controls

42 lines (34 loc) · 828 Bytes

Move3D

Description

Procedure Move3D moves the most recently created three-dimensional object a relative distance from it's original location. The object is moved relative to its center.

PROCEDURE Move3D(
				xDistance : REAL;
				yDistance : REAL;
				zDistance : REAL);
def vs.Move3D(xDistance, yDistance, zDistance):
    return None

Parameters

Name Type Description
xDistance REAL X offset distance.
yDistance REAL Y offset distance.
zDistance REAL Z offset ditance.

Examples

VectorScript

BeginXtrd(0',2");
Rect(0",1",1",0");
EndXtrd;
Move3D(3",1",2");

Python

Version

Availability: from All Versions

Category