diff options
| author | raysan5 <[email protected]> | 2021-10-12 20:22:12 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2021-10-12 20:22:12 +0200 |
| commit | 252bd2273880e9cc94933099df96ee712f5bdf9c (patch) | |
| tree | fb95241d5f9eef9b58f8aa5f93c4a9ed55b799fa /src/raylib.h | |
| parent | 0b0711027ac3860067347298b6aa16c5fc65f454 (diff) | |
| parent | e168c6dd818d89d88738e3590f5ae94a4a819223 (diff) | |
| download | raylib-252bd2273880e9cc94933099df96ee712f5bdf9c.tar.gz raylib-252bd2273880e9cc94933099df96ee712f5bdf9c.zip | |
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index e29ff577..1f2c0f20 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1383,7 +1383,9 @@ RLAPI void DrawSphere(Vector3 centerPos, float radius, Color color); RLAPI void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color); // Draw sphere with extended parameters RLAPI void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); // Draw sphere wires RLAPI void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone +RLAPI void DrawCylinderEx(Vector3 startPos, Vector3 endPos, float startRadius, float endRadius, int sides, Color color); // Draw a cylinder with base at startPos and top at endPos RLAPI void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone wires +RLAPI void DrawCylinderWiresEx(Vector3 startPos, Vector3 endPos, float startRadius, float endRadius, int sides, Color color); // Draw a cylinder wires with base at startPos and top at endPos RLAPI void DrawPlane(Vector3 centerPos, Vector2 size, Color color); // Draw a plane XZ RLAPI void DrawRay(Ray ray, Color color); // Draw a ray line RLAPI void DrawGrid(int slices, float spacing); // Draw a grid (centered at (0, 0, 0)) |
