Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 868 Bytes

File metadata and controls

34 lines (27 loc) · 868 Bytes

GetTexSpaceOrientV

Description

Procedure GetTexSpaceOrientV returns the vector that describes the v-axis of the referenced texture (from world space to texture space).

PROCEDURE GetTexSpaceOrientV(
				textureSpace : HANDLE;
				VAR vXAxis   : REAL;
				VAR vYAxis   : REAL;
				VAR vZAxis   : REAL);
def vs.GetTexSpaceOrientV(textureSpace):
    return (vXAxis, vYAxis, vZAxis)

Parameters

Name Type Description
textureSpace HANDLE Handle to texture space.
vXAxis REAL Returns v-axis vector X component.
vYAxis REAL Returns v-axis vector Y component.
vZAxis REAL Returns v-axis vector Z component.

Remarks

Returns the vector that describes the v-axis of the texture (from world space to texture space)

Version

Availability: from VectorWorks8.0

Category