From 26600b86884748c8d7f9199fee7f693021a5c384 Mon Sep 17 00:00:00 2001 From: ktyl Date: Sat, 12 Aug 2023 00:26:13 +0200 Subject: [PATCH] chore: fix typo --- src/icosphere.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/icosphere.hpp b/src/icosphere.hpp index 4b7b136..1ef5bf6 100644 --- a/src/icosphere.hpp +++ b/src/icosphere.hpp @@ -10,7 +10,7 @@ class Icosphere { public: - Icosphere(float radius, int subdividision); + Icosphere(float radius, int subdivisions); void render(); ~Icosphere(); @@ -56,4 +56,4 @@ private: int vertexForEdge(Lookup& lookup, VertexList& vertices, int first, int second); TriangleList subdivide(VertexList& vertices, TriangleList triangles); -}; \ No newline at end of file +};