Package org.joml

Class Matrix3x2dStack

java.lang.Object
org.joml.Matrix3x2d
org.joml.Matrix3x2dStack
All Implemented Interfaces:
Externalizable, Serializable, Cloneable, Matrix3x2dc

public class Matrix3x2dStack extends Matrix3x2d implements Cloneable
A stack of many Matrix3x2d instances. This resembles the matrix stack known from legacy OpenGL.

This Matrix3x2dStack class inherits from Matrix3x2d, so the current/top matrix is always the Matrix3x2dStack/Matrix3x2d itself. This affects all operations in Matrix3x2d that take another Matrix3x2d as parameter. If a Matrix3x2dStack is used as argument to those methods, the effective argument will always be the current matrix of the matrix stack.

Author:
Kai Burjack
See Also: