예제 #1
0
 public Vertex(DX.Vector3 position, DX.Vector2 texCoord, DX.Vector3 n, float a)
 {
     this.position = position;
     this.texCoord = texCoord;
     n.Normalize();
     this.normal = new DX.Vector4(n.X, n.Y, n.Z, a);
 }
예제 #2
0
 public Vertex(DX.Vector3 position, DX.Vector2 texCoord, DX.Vector4 c)
 {
     this.position = position;
     this.texCoord = texCoord;
     this.normal   = c;
 }
예제 #3
0
파일: Matrix.cs 프로젝트: rbernon/monoDX
		public void Shadow (Vector4 light, Plane plane)
		{
			throw new NotImplementedException ();
		}