diff options
| author | Ray <raysan5@gmail.com> | 2016-08-10 12:20:46 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2016-08-10 12:20:46 +0200 |
| commit | eb9072a2f133cdad9fb4fed4c8b80aca04770d55 (patch) | |
| tree | e2e56429ecd47f35294571365baa2ec83e3c9dac /src/raylib.h | |
| parent | cc2b3228d18f3bc4cd58ee4298cde78846cfde9e (diff) | |
| download | raylib-eb9072a2f133cdad9fb4fed4c8b80aca04770d55.tar.gz raylib-eb9072a2f133cdad9fb4fed4c8b80aca04770d55.zip | |
Renamed functions for consistency
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h index 41c32476..1673578d 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -800,6 +800,8 @@ const char *SubText(const char *text, int position, int length); //------------------------------------------------------------------------------------ // Basic 3d Shapes Drawing Functions (Module: models) //------------------------------------------------------------------------------------ +void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); // Draw a line in 3D world space +void DrawCircle3D(Vector3 center, float radius, float rotationAngle, Vector3 rotation, Color color); // Draw a circle in 3D world space void DrawCube(Vector3 position, float width, float height, float lenght, Color color); // Draw cube void DrawCubeV(Vector3 position, Vector3 size, Color color); // Draw cube (Vector version) void DrawCubeWires(Vector3 position, float width, float height, float lenght, Color color); // Draw cube wires @@ -814,8 +816,6 @@ void DrawRay(Ray ray, Color color); void DrawGrid(int slices, float spacing); // Draw a grid (centered at (0, 0, 0)) void DrawGizmo(Vector3 position); // Draw simple gizmo void DrawLight(Light light); // Draw light in 3D world -void Draw3DLine(Vector3 startPos, Vector3 endPos, Color color); // Draw a line in 3D world space -void Draw3DCircle(Vector3 center, float radius, float rotationAngle, Vector3 rotation, Color color); // Draw a circle in 3D world space //DrawTorus(), DrawTeapot() are useless... //------------------------------------------------------------------------------------ |
