REVIEWED: Added new examples to VS2022 solution
This commit is contained in:
parent
fe757b6267
commit
bbf0c3a46d
25 changed files with 4412 additions and 273 deletions
|
@ -167,7 +167,7 @@ int main(void)
|
|||
// Draw spline: cubic-bezier (with control points)
|
||||
for (int i = 0; i < pointCount - 1; i++)
|
||||
{
|
||||
DrawSplineBezierCubic(points[i], control[i].start, control[i].end, points[i + 1], 2.0f, RED);
|
||||
DrawSplineSegmentBezierCubic(points[i], control[i].start, control[i].end, points[i + 1], 10.0f, RED);
|
||||
|
||||
// Every cubic bezier point should have two control points
|
||||
DrawCircleV(control[i].start, 4, GOLD);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue