Table of Contents

matrix3f

Description

matrix3f is structure used to describe a 3×3 matrix in 32-bit floating point precision.

Definition

In Zeolite_defines.h:

typedef struct {
  vector3f i;
  vector3f j;
  vector3f k;
} matrix3f

Member data

Member name Type Comments
i vector3f The first column vector.
j vector3f The second column vector.
k vector3f The third column vector.

Type identifiers

VarID VarID_matrix3f
MapID N/A (matrix3f is not a valid map type.)