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