Package net.minecraft.client.util.math
Class MatrixStack
java.lang.Object
net.minecraft.client.util.math.MatrixStack
@Environment(CLIENT) public class MatrixStack extends Object
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MatrixStack.Entry
-
Field Summary
Fields Modifier and Type Field Description private Deque<MatrixStack.Entry>
stack
-
Constructor Summary
Constructors Constructor Description MatrixStack()
-
Method Summary
Modifier and Type Method Description boolean
isEmpty()
void
multiply(Quaternion quaternion)
MatrixStack.Entry
peek()
void
pop()
void
push()
void
scale(float x, float y, float z)
void
translate(double x, double y, double z)
-
Field Details
-
stack
-
-
Constructor Details
-
MatrixStack
public MatrixStack()
-
-
Method Details
-
translate
public void translate(double x, double y, double z) -
scale
public void scale(float x, float y, float z) -
multiply
-
push
public void push() -
pop
public void pop() -
peek
-
isEmpty
public boolean isEmpty()
-