Skip to content

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

Parameters

Parameter Default Value Note
points
color WHITE

Return value

None.

Notes

Example

// 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

Clone this wiki locally