@Environment(value=CLIENT) public class MatrixStack extends Object
Modifier and Type | Class and Description |
---|---|
static class |
MatrixStack.Entry |
Modifier and Type | Field and Description |
---|---|
private Deque<MatrixStack.Entry> |
stack |
Constructor and Description |
---|
MatrixStack() |
Modifier and Type | Method and 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) |
private final Deque<MatrixStack.Entry> stack
public void translate(double x, double y, double z)
public void scale(float x, float y, float z)
public void multiply(Quaternion quaternion)
public void push()
public void pop()
public MatrixStack.Entry peek()
public boolean isEmpty()