Example #1
0
 public void PushMatrix(Matrix4 matrix)
 {
     if(matrix == null) {
         Content.Push(this.Top);
     }
     else {
         Content.Push(matrix.CopyTransform(this.Top));
     }
 }