diff options
| author | raysan5 <[email protected]> | 2021-08-08 11:29:24 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2021-08-08 11:29:24 +0200 |
| commit | 5e63cd3c97a8b45c5effa961b00b533223c4e44f (patch) | |
| tree | e19b0b585a0c3d12f403c7cd7f19517e7026ce04 /src/raylib.h | |
| parent | e6fe8169c27825580e9b0e73ae633e89dc83b786 (diff) | |
| download | raylib-5e63cd3c97a8b45c5effa961b00b533223c4e44f.tar.gz raylib-5e63cd3c97a8b45c5effa961b00b533223c4e44f.zip | |
ADDED: GenMeshCone() #1903
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 781c1420..92e592e9 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1428,6 +1428,7 @@ RLAPI Mesh GenMeshCube(float width, float height, float length); RLAPI Mesh GenMeshSphere(float radius, int rings, int slices); // Generate sphere mesh (standard sphere) RLAPI Mesh GenMeshHemiSphere(float radius, int rings, int slices); // Generate half-sphere mesh (no bottom cap) RLAPI Mesh GenMeshCylinder(float radius, float height, int slices); // Generate cylinder mesh +RLAPI Mesh GenMeshCone(float radius, float height, int slices); // Generate cone/pyramid mesh RLAPI Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); // Generate torus mesh RLAPI Mesh GenMeshKnot(float radius, float size, int radSeg, int sides); // Generate trefoil knot mesh RLAPI Mesh GenMeshHeightmap(Image heightmap, Vector3 size); // Generate heightmap mesh from image data |
