chore: fix typo

This commit is contained in:
ktyl 2023-08-12 00:26:13 +02:00
parent 2b6444dfac
commit 26600b8688
1 changed files with 2 additions and 2 deletions

View File

@ -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);
};
};