mat3
fun mat3(m00: Float = 0.0f, m01: Float = 0.0f, m02: Float = 0.0f, m10: Float = 0.0f, m11: Float = 0.0f, m12: Float = 0.0f, m20: Float = 0.0f, m21: Float = 0.0f, m22: Float = 0.0f): Matrix3
A utility factory function that allows to create Matrix3 instances with named parameters.
Return
a new instance of Matrix3.
Parameters
m00
first row, first column.
m01
first row, second column.
m02
first row, third column.
m10
second row, first column.
m11
second row, second column.
m12
second row, third column.
m20
third row, first column.
m21
third row, second column.
m22
third row, third column.