summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/shapes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shapes.c b/src/shapes.c
index ed132481..2777cf6c 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -1246,6 +1246,7 @@ void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color)
// Draw a triangle fan defined by points
// NOTE: First vertex provided is the center, shared by all triangles
+// By default, following vertex should be provided in counter-clockwise order
void DrawTriangleFan(Vector2 *points, int pointsCount, Color color)
{
if (pointsCount >= 3)