From 4992edab247079b7c8e840b0f1210114849303db Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 29 Jan 2020 12:21:22 +0100 Subject: [PATCH] ADDED: DrawPoint3D() --- src/models.c | 2 +- src/raylib.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/models.c b/src/models.c index 966204347..93fc2330a 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(); diff --git a/src/raylib.h b/src/raylib.h index 97e370575..fbfc50062 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1234,6 +1234,7 @@ RLAPI const char *CodepointToUtf8(int codepoint, int *byteLength); // Encode // Basic geometric 3D shapes drawing functions RLAPI void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); // Draw a line in 3D world space +RLAPI void DrawPoint3D(Vector3 position, Color color); // Draw a point in 3D space, actually a small line RLAPI void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color); // Draw a circle in 3D world space RLAPI void DrawCube(Vector3 position, float width, float height, float length, Color color); // Draw cube RLAPI void DrawCubeV(Vector3 position, Vector3 size, Color color); // Draw cube (Vector version)