voxel-wiki / voxel-wiki.github.io

Voxel.Wiki is a website that is all about voxels: Values on regular grids in three-dimensional space!
https://voxel.wiki/
Other
29 stars 17 forks source link

Filled out the vertex pulling article #15

Closed Finding-Fortune closed 8 months ago

Finding-Fortune commented 8 months ago

I recently learned vertex pulling, so I thought I would help fill out this article. The example uses bit compression, so there might be an easier example out there - hopefully not too complex.

Finding-Fortune commented 8 months ago

Hey @Longor1996 - I did one more quick read through and there was a small bug in the 6th step. I have a line: position += facePositions[currVertexID]; but it should be: position += facePositions[indices[currVertexID]]; I thought it would be excessive to make a new branch, so thought I would just ping you with this change.

Longor1996 commented 8 months ago

Fixed with 6a2fcb0