Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 988 Bytes

File metadata and controls

36 lines (28 loc) · 988 Bytes

SetTexSpaceOrientW

Description

Procedure SetTexSpaceOrientW specifies the vector that describes the w-axis of the referenced texture (from world space to texture space).

PROCEDURE SetTexSpaceOrientW(
				textureSpace : HANDLE;
				wXAxis       : REAL;
				wYAxis       : REAL;
				wZAxis       : REAL);
def vs.SetTexSpaceOrientW(textureSpace, wXAxis, wYAxis, wZAxis):
    return None

Parameters

Name Type Description
textureSpace HANDLE Handle to texture space.
wXAxis REAL Sets w-axis vector X component.
wYAxis REAL Sets w-axis vector Y component.
wZAxis REAL Sets w-axis vector Z component.

Remarks

Sets the w-axis for the texture space (from world space to texture space)

Note: SetTexMapXXX routines replace the older SetTexSpaceXXX routines. It is recommended that all developers transition to the newer versions.

Version

Availability: from VectorWorks8.0

Category