DrawTriangle abstract method

void DrawTriangle(
  1. Vector2StructType v1,
  2. Vector2StructType v2,
  3. Vector2StructType v3,
  4. ColorStructType color,
)

Draw a color-filled triangle (vertex in counter-clockwise order!)

Implementation

void DrawTriangle(
  Vector2StructType v1,
  Vector2StructType v2,
  Vector2StructType v3,
  ColorStructType color,
);