-
Notifications
You must be signed in to change notification settings - Fork 29
Using matrices
Matrices can be constructed in quite a few different ways.
Initializing a matrix without any additional arguments will return an identity matrix, meaning that it's values are set to 1
where column and row indices are equal and set to 0
otherwise.
This results in a diagonal line of ones from top left to bottom right.
Example:
>>> print(glm.mat2())
[ 1 ][ 0 ]
[ 0 ][ 1 ]
>>> print(glm.mat4())
[ 1 ][ 0 ][ 0 ][ 0 ]
[ 0 ][ 1 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 1 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 1 ]
>>> print(glm.mat2x4())
[ 1 ][ 0 ]
[ 0 ][ 1 ]
[ 0 ][ 0 ]
[ 0 ][ 0 ]
Initializing a matrix with a single number returns a matrix similar to the identity matrices shown above.
The only difference is that instead of setting equal column and row indices to 1
, they're set to the provided number.
Example:
>>> print(glm.mat2(3))
[ 3 ][ 0 ]
[ 0 ][ 3 ]
>>> print(glm.mat4(0))
[ 0 ][ 0 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 0 ]
>>> print(glm.mat2x4(1.5))
[ 1.5 ][ 0 ]
[ 0 ][ 1.5 ]
[ 0 ][ 0 ]
[ 0 ][ 0 ]
Initializing a 3x3 or 4x4 matrix with a quaternion yields a matrix with the same basic rotational properties as the quaternion.
Example:
>>> q = glm.quat(glm.vec3(0, 0, glm.radians(90))) # rotate 90 degrees around the Z axis
>>> print(glm.mat4(q))
[ 5.96046e-08 ][ -1 ][ 0 ][ 0 ]
[ 1 ][ 5.96046e-08 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 1 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 1 ]
>>> print(glm.rotate(glm.radians(90), glm.vec3(0, 0, 1)))
[ -4.37114e-08 ][ -1 ][ 0 ][ 0 ]
[ 1 ][ -4.37114e-08 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 1 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 1 ]
You can initialize a matrix' diagonal with custom values.
Example:
>>> print(glm.mat2(1, 2))
[ 1 ][ 0 ]
[ 0 ][ 2 ]
>>> print(glm.mat4(1, 2, 3, 4))
[ 1 ][ 0 ][ 0 ][ 0 ]
[ 0 ][ 2 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 3 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 4 ]
>>> print(glm.mat2x4(1, 2))
[ 1 ][ 0 ]
[ 0 ][ 2 ]
[ 0 ][ 0 ]
[ 0 ][ 0 ]
i.e. a matNxM
matrix can be initialized with int(sqrt(N * M))
numbers.
A matrix matNxM
can be initialized with N x M numbers, which will be copied (or may be converted) to their respective components.
Example:
>>> print(glm.mat2(1, 2, 3, 4))
[ 1 ][ 3 ]
[ 2 ][ 4 ]
>>> print(glm.mat4(*range(16)))
[ 0 ][ 4 ][ 8 ][ 12 ]
[ 1 ][ 5 ][ 9 ][ 13 ]
[ 2 ][ 6 ][ 10 ][ 14 ]
[ 3 ][ 7 ][ 11 ][ 15 ]
A copy of a matrix can be obtained by initializing a matrix with an instance of a matrix.
i.e. glm.mat2(glm.mat2(5, 2, 4, 3))
returns matrix ((5, 2), (4, 3))
This is what's known as the copy constructor.
You can initialize any matrix with another matrix (as long as they have the same datatype or size).
Any values that don't fit into the new matrix are discarded and any values that aren't filled by the supplied matrix are padded up with values from the respective identity matrix.
Example:
>>> print(glm.mat4( glm.mat2(9, 8, 7, 6) ))
[ 9 ][ 7 ][ 0 ][ 0 ]
[ 8 ][ 6 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 1 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 1 ]
>>> m44 = glm.mat4(*range(16))
>>> print(m44)
[ 0 ][ 4 ][ 8 ][ 12 ]
[ 1 ][ 5 ][ 9 ][ 13 ]
[ 2 ][ 6 ][ 10 ][ 14 ]
[ 3 ][ 7 ][ 11 ][ 15 ]
>>> print(glm.mat2(m44))
[ 0 ][ 4 ]
[ 1 ][ 5 ]
>>> m32 = glm.mat3x2(6, 5, 4, 3, 2, 1)
>>> print(m32)
[ 6 ][ 4 ][ 2 ]
[ 5 ][ 3 ][ 1 ]
>>> print(glm.mat2x3(m32))
[ 6 ][ 4 ]
[ 5 ][ 3 ]
[ 0 ][ 0 ]
>>> print(glm.mat3(m32))
[ 6 ][ 4 ][ 2 ]
[ 5 ][ 3 ][ 1 ]
[ 0 ][ 0 ][ 1 ]
>>> print(glm.imat2(glm.dmat2(7.9)))
[ 7 ][ 0 ]
[ 0 ][ 7 ]
You can construct a matNxM
from N vectors of length M, if they share the same datatype.
Example:
>>> print(glm.mat2( glm.vec2(1, 2), glm.vec2(3, 4) )) # 2 vectors of length 2
[ 1 ][ 3 ]
[ 2 ][ 4 ]
>>> print(glm.mat2x4( glm.vec4(1, 2, 3, 4), glm.vec4(5, 6, 7, 8) )) # 2 vectors of length 4
[ 1 ][ 5 ]
[ 2 ][ 6 ]
[ 3 ][ 7 ]
[ 4 ][ 8 ]
>>> print(glm.mat4x2( glm.vec2(1, 2), glm.vec2(3, 4), glm.vec2(5, 6), glm.vec2(7, 8) )) # 4 vectors of length 2
[ 1 ][ 3 ][ 5 ][ 7 ]
[ 2 ][ 4 ][ 6 ][ 8 ]
Instead of using matrices, you can use matrix-like lists / tuples in most cases.
For example, you can initialize a matrix with a matrix-like tuple:
>>> print(glm.mat2( ((1, 2), (3, 4)) ))
[ 1 ][ 3 ]
[ 2 ][ 4 ]
Or use it on one handside of a numeric operator:
>>> m22 = glm.mat2()
>>> print(m22)
[ 1 ][ 0 ]
[ 0 ][ 1 ]
>>> print(m22 + ((4, 3), (2, 1)))
[ 5 ][ 2 ]
[ 3 ][ 2 ]
It is also accepted by most functions:
>>> print(glm.inverse( ((1,2),(3,4)) ))
[ -2 ][ 1.5 ]
[ 1 ][ -0.5 ]
A few objects in Python support a functionality called the buffer protocol.
One such example would be the Python bytes
type or numpy.array
.
PyGLM also supports this protocol and thus can be converted to or from any other object that supports it, granted it's in a fitting format.
Examples:
>>> narr = numpy.array(glm.mat4())
>>> print(narr)
[[1. 0. 0. 0.]
[0. 1. 0. 0.]
[0. 0. 1. 0.]
[0. 0. 0. 1.]]
>>> print(glm.mat4(narr))
[ 1 ][ 0 ][ 0 ][ 0 ]
[ 0 ][ 1 ][ 0 ][ 0 ]
[ 0 ][ 0 ][ 1 ][ 0 ]
[ 0 ][ 0 ][ 0 ][ 1 ]
Note: objects that use the buffer protocol may request a reference instead of a copy of the object, meaning that if you change the 'copy', you'll also change the original.
Any matrix type implements the following methods:
You can acquire the length of a matrix with the length()
method.
It will give you the same result as the builtin len(<matrix>)
method.
Matrices support the copy protocol (see here).
You can use copy.copy(<matrix>)
or copy.deepcopy(<matrix>)
to get a copy of a matrix.
Matrices support pickling (as of PyGLM 2.0.0), which is Python's serialization method.
Any matrix type has a to_list()
and a to_tuple()
function, which returns the matrix' data represented as a list or tuple respectively.
Example:
>>> print(glm.mat4().to_list())
[[1.0, 0.0, 0.0, 0.0], [0.0, 1.0, 0.0, 0.0], [0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 1.0]]
>>> print(glm.mat4().to_tuple())
((1.0, 0.0, 0.0, 0.0), (0.0, 1.0, 0.0, 0.0), (0.0, 0.0, 1.0, 0.0), (0.0, 0.0, 0.0, 1.0))
All matrices have a to_bytes()
and a from_bytes()
method, which allows for conversion of the matrix' data to and from bytes strings.
Matrix types support a bunch of operators.
Matrices support addition with other matrices and numbers.
Only matrices of the same shape and type can be used.
sum1 = mat2(1, 2, 3, 4) + mat2(1, 0, 1, 0) # returns mat2(2, 2, 4, 4)
sum2 = mat2(1, 2, 3, 4) + 4 # returns mat2(5, 6, 7, 8)
Note: Only square matrices allow for left side addition of numbers
Matrices support subtraction with other matrices and numbers.
diff1 = mat2(1, 2, 3, 4) - mat2(1, 0, 1, 0) # returns mat2(0, 2, 2, 4)
diff2 = mat2(1, 2, 3, 4) - 4 # returns mat2(-3, -2, -1, 0)
Note: Only square matrices allow for left side subtration of numbers
Matrices support multiplication with vectors, other matrices and numbers.
Multiplying a matrix with a number multiplies each component with that number.
prod = mat2(1, 2, 3, 4) * 4 # returns mat2(4, 8, 12, 16)
Multiplying a matrix with a vector is a bit more complex.
If you have a matNxM
matrix, you can either
left-side multiply it with a length M vector and get a length N vector in return
prod1 = vec3(7, 8, 9) * mat2x3((1, 2, 3), (4, 5, 6))
# returns vec2(
# 7 * 1 + 8 * 2 + 9 * 3,
# 7 * 4 + 8 * 5 + 9 * 6
# )
# = vec2(50, 122)
prodx = vec4(a, b, c, d) * mat3x4((m00, m01, m02, m03), (m10, m11, m12, m13), (m20, m21, m22, m23))
# returns vec3(
# a * m00 + b * m01 + c * m02 + d * m03,
# a * m10 + b * m11 + c * m12 + d * m13,
# a * m20 + b * m21 + c * m22 + d * m23
# )
or right-side multiply it with a length N vector and get a length M vector in return.
prod1 = mat2x3((1, 2, 3), (4, 5, 6)) * vec2(7, 8)
# returns vec3(
# 7 * 1 + 8 * 4,
# 7 * 2 + 8 * 5,
# 7 * 3 + 8 * 6
# )
# = vec3(39, 54, 69)
prodx = mat3x4((m00, m01, m02, m03), (m10, m11, m12, m13), (m20, m21, m22, m23)) * vec3(a, b, c)
# returns vec4(
# a * m10 + b * m10 + c * m20,
# a * m11 + b * m11 + c * m21,
# a * m12 + b * m12 + c * m22,
# a * m13 + b * m13 + c * m23
# )
For multiplication of square matrices with vectors using homogenous coordinates, PyGLM provides a shorthand:
m = rotate(radians(90), vec3(0, 1, 0)) # creates a 4x4 rotation matrix
v = vec3(1, 2, 3) # some 3D vector
# This is what you would normally have to do to apply the rotation to v:
v_rotated = vec3(m * vec4(v, 1)) # returns vec3( 3, 2, -1 )
# This is the shorthand:
v_rotated = m * v # returns vec3( 3, 2, -1 )
Now for the most complex part.
Matrix-matrix multiplication.
You can only multiply a matAxB
with a matCxA
matrix and it will return a matCxB
matrix.
mat2x3() * mat4x2() # returns a mat4x3
mat3x2() * mat2x4() # error - these matrices are incompatible
mat2x4() * mat2x4() # error - these matrices are incompatible
mat2x2() * mat2x2() # returns a mat2x2
mat3x3() * mat2x3() # returns a mat2x3
The actual computation is a combination of multiplication and addition.
Okay, so this may be a bit difficult to grasp at first:
Each component of the resulting matrix is the sum of each component of the first matrix' respective row
multiplied by the components of the second matrix' respective column.
Keep in mind, that glm's columns and rows are in the opposite order, so this gets even more complicated.
Lets try to visualize it using an example:
>>> m24 = glm.mat2x4(1, 2, 3, 4, 5, 6, 7, 8)
>>> print(m24)
[ 1 ][ 5 ]
[ 2 ][ 6 ]
[ 3 ][ 7 ]
[ 4 ][ 8 ]
>>> m22 = glm.mat2(4, 3, 2, 1)
>>> print(m22)
[ 4 ][ 2 ]
[ 3 ][ 1 ]
>>> print(m24 * m22)
[ 19 ][ 7 ]
[ 26 ][ 10 ]
[ 33 ][ 13 ]
[ 40 ][ 16 ]
result = mat2x4(
(
m24[0, 0] * m22[0, 0] + m24[1, 0] * m22[0, 1],
m24[0, 1] * m22[0, 0] + m24[1, 1] * m22[0, 1],
m24[0, 2] * m22[0, 0] + m24[1, 2] * m22[0, 1],
m24[0, 3] * m22[0, 0] + m24[1, 3] * m22[0, 1]
),
(
m24[0, 0] * m22[1, 0] + m24[1, 0] * m22[1, 1],
m24[0, 1] * m22[1, 0] + m24[1, 1] * m22[1, 1],
m24[0, 2] * m22[1, 0] + m24[1, 2] * m22[1, 1],
m24[0, 3] * m22[1, 0] + m24[1, 3] * m22[1, 1]
)
)
Has the same effects as the *
operator.
Matrices support division with numbers, vectors and other matrices.
quot = mat2(1, 2, 3, 4) / 2 # returns mat2(0.5, 1, 1.5, 2)
Only square matrices can support division with other matrices and vectors.
If a matrix is divided by a vector or vice versa, the matrix is simply inversed and multiplied with that vector instead.
>>> m22 = mat2(1, 2, 3, 4)
>>> v2 = vec2(5, 6)
>>> m22 / v2
vec2( -1, 2 )
>>> glm.inverse(m22) * v2
vec2( -1, 2 )
Division with other matrices follows the same scheme.
The right handside matrix is inversed and then multiplied by the other matrix.
>>> m22 = mat2(1, 2, 3, 4)
>>> m22 / mat2(8, 7, 6, 5)
mat2x2(( 8, 9 ), ( -9, -10 ))
>>> m22 * glm.inverse(mat2(8, 7, 6, 5))
mat2x2(( 8, 9 ), ( -9, -10 ))
The length of a matrix (i.e. the column count) can be queried using len()
.
mat_length = len(mat2x4()) # returns 2
You can get the values of a matrix using indices.
m = mat2x3(1, 2, 3, 4, 5, 6)
print(m[0]) # prints mvec3(1, 2, 3)
print(m[1]) # prints mvec3(4, 5, 6)
print(m[0, 2]) # prints 3
print(m[1, 0]) # prints 4
Note: mvec is a special vector type, that references the values of the matrix it came from.
I.e. if you change the mvec's values, you will do so with the values of the matrix too.
You can also set the values.
>>> m = mat2(1, 2, 3, 4)
>>> m[0] = vec2(5, 6)
>>> print(m)
[ 5 ][ 3 ]
[ 6 ][ 4 ]
You can query wether or not a value is contained by a matrix using the in
operator.
>>> m = mat2(1, 2, 3, 4)
>>> vec2(1, 2) in m
True
>>> vec2(2, 3) in m
False
>>> 3 in m
True
>>> 0 in m
False
You can compare matrices using the equals and not-equals richcompare operators:
mat2(1, 2, 3, 4) == mat2(1, 2, 3, 4) # True
mat2(1, 2, 3, 4) == mat2(3, 4, 1, 2) # False
mat2(1, 2, 3, 4) == mat3(1, 2, 3, 4, 5, 6, 7, 8, 9) # False
mat2(1, 2, 3, 4) != mat2(1, 2, 3, 4) # False
mat2(1, 2, 3, 4) != mat2(3, 4, 1, 2) # True
mat2(1, 2, 3, 4) != mat3(1, 2, 3, 4, 5, 6, 7, 8, 9) # True
You can generate an iterable from matrices using iter()
.
m = mat2(1, 2, 3, 4)
it = iter(m)
print(next(it)) # prints mvec2(1, 2)
print(next(it)) # prints mvec2(3, 4)
You can generate a hash value for matrices using hash()
Example:
>>> m = mat2()
>>> hash(m)
-8340327414932306126
>>> m2 = mat2(1, 2, 3, 4)
>>> hash(m2)
2533527020982565631