Exemplo n.º 1
0
 public void Transform(Matrix t)
 {
     MatrixStack.ReplaceTop(t * MatrixStack.TopMatrix); //* t);
     stateChanges = true;
 }
Exemplo n.º 2
0
 public void Identity()
 {
     MatrixStack.ReplaceTop(Matrix.Identity);
     stateChanges = true;
 }