Updated example assets

This commit is contained in:
Ray 2021-03-19 22:39:39 +01:00
parent 5967c1ba1a
commit 442abaab72
16 changed files with 377 additions and 10836 deletions

View file

@ -173,7 +173,7 @@ void DrawLineBezierQuad(Vector2 startPos, Vector2 endPos, Vector2 controlPos, fl
current.y = a*startPos.y + b*controlPos.y + c*endPos.y;
current.x = a*startPos.x + b*controlPos.x + c*endPos.x;
DrawLineEx(previous,current,thick,color);
DrawLineEx(previous, current, thick, color);
previous = current;
}