TRIVERTEX (Structures)
Last changed: -50.241.168.105

.
Summary

C# Definition:

[StructLayout(LayoutKind.Sequential)]

public struct TRIVERTEX
{
   int    x;
   int    y;
   ushort     Red;
   ushort     Green;
   ushort     Blue;
   ushort     Alpha;

   public TRIVERTEX(int x, int y, ushort red, ushort green, ushort blue, ushort alpha)
   {
     this.x = x;
     this.y = x;
     this.Red = red;
     this.Green = green;
     this.Blue = blue;
     this.Alpha = alpha;
   }
}

VB Definition:

Structure TRIVERTEX
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
TRIVERTEX on MSDN