mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-13 23:08:14 +00:00
Updated example assets
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user