Plate generation.

This commit is contained in:
2025-12-06 19:44:27 -05:00
parent d52e19740e
commit 4d372ff3d1
4 changed files with 51 additions and 11 deletions

View File

@@ -21,7 +21,7 @@ void render() {
// Convert the vertices from world coordinates (Pt) to screen
// coordinates (Vector2).
Vector2 screen_verts[4];
Vector2 screen_verts[10];
for (int j = 0; j < plate.nverts; j++) {
screen_verts[j] = PointToVector2(plate.verts[j]);
}