-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.DrawSplineLinear
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Draw spline: linear, minimum 2 points
| Parameter | Default Value | Note |
|---|---|---|
| points | ||
| thick | 1.0 | |
| color | WHITE |
None.
// Draw a thick linear spline (straight segments) through four points
pts = [[50, 200], [150, 100], [250, 200], [350, 100]]
raylib.DrawSplineLinear pts, 2, raylib.WHITE