-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.DrawTriangleStrip
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Draw a triangle strip defined by points NOTE: Every new vertex connects with previous two
| Parameter | Default Value | Note |
|---|---|---|
| points | ||
| color | WHITE |
None.
// Draw a triangle strip from a list of points
pts = [[50, 200], [100, 50], [200, 200], [300, 50], [350, 200]]
raylib.DrawTriangleStrip pts, raylib.YELLOW