intial commit

This commit is contained in:
slinky55
2026-04-10 01:45:16 -05:00
commit 38a5aa5a47
12 changed files with 721 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import org.joml.Vector3f;
import org.joml.Vector2f;
public class Vertex {
public Vector3f position;
public Vector2f uv;
public Vector3f norm;
}