This function retrieves the entity's 4x4 transformation matrix.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_vect_ent_get_matrix( HIG_VECT_ENTITY hEntity, VECT_REAL* lpMat ); |
Name | Type | Description |
---|---|---|
hEntity | HIG_VECT_ENTITY | Handle of the entity whose matrix is retrieved. |
lpMat | VECT_REAL* | Pointer to a memory buffer to which to copy the matrix. See Remarks. |
This function does not process image pixels.
None
lpMat must point to an array of 16 VECT_REAL values, for example:
VECT_REAL lpMat[16].
The matrix uses column-major order, as accepted in OpenGL and Direct3D.