Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 940 Bytes

File metadata and controls

35 lines (28 loc) · 940 Bytes

Get3DOrientation

Description

Function Get3DOrientation returns the 3D orientation of the referenced object.

If the object is mirrored, a reflection across the X-Y plane must be applied before rotating by the angles above in order to reproduce the object's orientation.

FUNCTION Get3DOrientation(
				h                : HANDLE;
				VAR xRot         : REAL;
				VAR yRot         : REAL;
				VAR zRot         : REAL;
				VAR isMirroredXY : BOOLEAN): BOOLEAN;
def vs.Get3DOrientation(h):
    return (BOOLEAN, xRot, yRot, zRot, isMirroredXY)

Parameters

Name Type Description
h HANDLE Handle to 3D object.
xRot REAL Returns X rotation value.
yRot REAL Returns Y rotation value.
zRot REAL Returns Z rotation value.
isMirroredXY BOOLEAN Returns mirror status of object.

Version

Availability: from VectorWorks8.0

Category