Class: Matrix3x3f
Functions
| Name | Description |
|---|---|
.lookAt(eye,center,up) | |
.new() | Constructs a matrix with zero values |
.new(value) | Constructs a matrix from Matrix4x4f |
.newIdentity() | Constructs an identity matrix |
Methods
| Name | Description |
|---|---|
:__add(value) | |
:__div(value) | |
:__index(index) | |
:__mul(value) | |
:__sub(value) | |
:determinant() | |
:inverse() | |
:position() | |
:quatCast() | |
:transpose() |
Function declarations
Function: lookAt
lua
function Matrix3x3f.lookAt(
eye,
center,
up
) endParameters:
Returns:
Function: new
Constructs a matrix with zero values
lua
function Matrix3x3f.new() endReturns:
Function: new
Constructs a matrix from Matrix4x4f
lua
function Matrix3x3f.new(
value
) endParameters:
- value (
any)
Returns:
Function: newIdentity
Constructs an identity matrix
lua
function Matrix3x3f.newIdentity() endReturns:
Method declarations
Method: __add
lua
function Matrix3x3f:__add(
value
) endParameters:
- value (
any)
Returns:
Method: __div
lua
function Matrix3x3f:__div(
value
) endParameters:
- value (
any)
Returns:
Method: __index
lua
function Matrix3x3f:__index(
index
) endParameters:
- index (
integer) - The index of the column to retrieve
Returns:
Method: __mul
lua
function Matrix3x3f:__mul(
value
) endParameters:
- value (
any)
Returns:
Method: __sub
lua
function Matrix3x3f:__sub(
value
) endParameters:
- value (
any)
Returns:
Method: determinant
lua
function Matrix3x3f:determinant() endReturns:
number
Method: inverse
lua
function Matrix3x3f:inverse() endReturns:
Method: position
lua
function Matrix3x3f:position() endReturns:
Method: quatCast
lua
function Matrix3x3f:quatCast() endReturns:
Method: transpose
lua
function Matrix3x3f:transpose() end