The D3dVertex Class contains the following constructors:
D3dVertex()
D3dVertex(float x, float y, float z, float nx, float ny, float nz, float tu, float tv)
Creates a D3dVertex object with fields uninitialized.
public D3dVertex();
Creates a D3dVertex object with fields set to values specified by the user.
public D3dVertex(float x, float y, float z, float nx, float ny, float nz, float tu, float tv);
x | A floating point value that sets the x field. |
y | A floating point value that sets the y field. |
x | A floating point value that sets the z field. |
nx | A floating point value that sets the nx field. |
ny | A floating point value that sets the ny field. |
nz | A floating point value that sets the nz field. |
tu | A floating point value that sets the tu field. |
tv | A floating point value that sets the tv field. |