diff options
Diffstat (limited to 'src/maths/primitives.h')
-rw-r--r-- | src/maths/primitives.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/maths/primitives.h b/src/maths/primitives.h index be2c6ff..38ae1de 100644 --- a/src/maths/primitives.h +++ b/src/maths/primitives.h @@ -6,8 +6,8 @@ #include "maths_types.h" #include "render_types.h" -geometry_data geo_create_plane(f32x2 extents); -geometry_data geo_create_cuboid(f32x3 extents); -geometry_data geo_create_cylinder(f32 radius, f32 height, u32 resolution); -geometry_data geo_create_uvsphere(f32 radius, u32 north_south_lines, u32 east_west_lines); -geometry_data geo_create_icosphere(f32 radius, f32 n_subdivisions);
\ No newline at end of file +Geometry Geo_CreatePlane(f32x2 extents); +Geometry Geo_CreateCuboid(f32x3 extents); +Geometry Geo_CreateCylinder(f32 radius, f32 height, u32 resolution); +Geometry Geo_CreateUVsphere(f32 radius, u32 north_south_lines, u32 east_west_lines); +Geometry Geo_CreateIcosphere(f32 radius, f32 n_subdivisions); |