コード例 #1
0
 public void UpdateShape(Shape s)
 {
     s.Update(device, shaderSignature);
 }
コード例 #2
0
ファイル: Shape.cs プロジェクト: adrianj/Direct3D-Testing
 public void CopyShapeTo(Shape other)
 {
     other.Vertices = this.Vertices;
     other.Location = this.Location;
     other.Rotation = this.Rotation;
     other.Scale = this.Scale;
     other.Update();
 }