Cleaned up Cube (#48)

* Cleaned up Cube
* Refactor/cleanup & documentation of Cube
* Renamed Tesselator to Tessellator

* Revert "Tesselator" Spelling Correction

---------

Co-authored-by: Brent Da Mage <BrentDaMage@users.noreply.github.com>
This commit is contained in:
Brent
2023-08-11 03:53:50 -05:00
committed by GitHub
parent ce6c2eb553
commit b45cfc1e16
11 changed files with 129 additions and 239 deletions

View File

@@ -68,7 +68,7 @@ void PolygonQuad::mirror()
std::swap(m_verts[1], m_verts[2]);
}
void PolygonQuad::render(Tesselator& t, float scale, int unused)
void PolygonQuad::render(Tesselator& t, float scale)
{
for (int i = 0; i < 4; i++)
{