public void UpdateShape(Shape s)
 {
     s.Update(device, shaderSignature);
 }
示例#2
0
 public void CopyShapeTo(Shape other)
 {
     other.Vertices = this.Vertices;
     other.Location = this.Location;
     other.Rotation = this.Rotation;
     other.Scale = this.Scale;
     other.Update();
 }