diff options
| author | Ray <[email protected]> | 2020-01-29 12:21:22 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-01-29 12:21:22 +0100 |
| commit | 4992edab247079b7c8e840b0f1210114849303db (patch) | |
| tree | 6af178fa2a96a1b49cd45ce391f10865426f33d2 /src/models.c | |
| parent | af3df8bdd6e10a155c28b27001a75366fe171619 (diff) | |
| download | raylib-4992edab247079b7c8e840b0f1210114849303db.tar.gz raylib-4992edab247079b7c8e840b0f1210114849303db.zip | |
ADDED: DrawPoint3D()
Diffstat (limited to 'src/models.c')
| -rw-r--r-- | src/models.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models.c b/src/models.c index 96620434..93fc2330 100644 --- a/src/models.c +++ b/src/models.c @@ -110,7 +110,7 @@ void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color) rlEnd(); } -// Draw a point in 3D space--actually a small line. +// Draw a point in 3D space, actually a small line void DrawPoint3D(Vector3 position, Color color) { if (rlCheckBufferLimit(8)) rlglDraw(); |
