The D3dTriangle Class contains the following constructors:
D3dTriangle(int v1, int v2, int v3, short flags)
D3dTriangle(short v1, short v2, short v3, short flags)
Creates a D3dTriangle object with the members passed as ints and a short (flags) cast to chars.
public D3dTriangle(int v1, int v2, int v3, short flags);
v1 | The v1 field cast as an int. |
v2 | The v2 field cast as an int. |
v3 | The v3 field cast as an int. |
flags | The flags field cast as a short. |
Creates a D3dTriangle object with the members passed as shorts cast to chars.
public D3dTriangle(short v1, short v2, short v3, short flags);
v1 | The v1 field cast as a short. |
v2 | The v2 field cast as a short. |
v3 | The v3 field cast as a short. |
flags | The flags field cast as a short. |