From b3cab69ae9a5c9f219e68959c7318fdd18fa2303 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 19 Sep 2023 08:03:48 +0100 Subject: [PATCH] Update MeshGeneration example --- Examples/Models/MeshGeneration.cs | 42 ++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/Examples/Models/MeshGeneration.cs b/Examples/Models/MeshGeneration.cs index 2e9d6fb..f6943e0 100644 --- a/Examples/Models/MeshGeneration.cs +++ b/Examples/Models/MeshGeneration.cs @@ -30,7 +30,7 @@ public class MeshGeneration Texture2D texture = LoadTextureFromImage(isChecked); UnloadImage(isChecked); - Model[] models = new Model[7]; + Model[] models = new Model[9]; models[0] = LoadModelFromMesh(GenMeshPlane(2, 2, 5, 5)); models[1] = LoadModelFromMesh(GenMeshCube(2.0f, 1.0f, 2.0f)); @@ -39,6 +39,8 @@ public class MeshGeneration models[4] = LoadModelFromMesh(GenMeshCylinder(1, 2, 16)); models[5] = LoadModelFromMesh(GenMeshTorus(0.25f, 4.0f, 16, 32)); models[6] = LoadModelFromMesh(GenMeshKnot(1.0f, 2.0f, 16, 128)); + models[7] = LoadModelFromMesh(GenMeshPoly(5, 2.0f)); + models[8] = LoadModelFromMesh(GenMeshCustom()); // Set isChecked texture as default diffuse component for all models material for (int i = 0; i < models.Length; i++) @@ -117,6 +119,12 @@ public class MeshGeneration case 6: DrawText("KNOT", 680, 10, 20, Color.DARKBLUE); break; + case 7: + DrawText("POLY", 680, 10, 20, Color.DARKBLUE); + break; + case 8: + DrawText("Custom (triagnle)", 580, 10, 20, Color.DARKBLUE); + break; default: break; } @@ -137,4 +145,36 @@ public class MeshGeneration return 0; } + + // Generate a simple triangle mesh from code + private static Mesh GenMeshCustom() + { + Mesh mesh = new(3, 1); + mesh.AllocVertices(); + mesh.AllocTexCoords(); + mesh.AllocNormals(); + Span vertices = mesh.VerticesAs(); + Span texcoords = mesh.TexCoordsAs(); + Span normals = mesh.NormalsAs(); + + // Vertex at (0, 0, 0) + vertices[0] = new(0, 0, 0); + normals[0] = new(0, 1, 0); + texcoords[0] = new(0, 0); + + // Vertex at (1, 0, 2) + vertices[1] = new(1, 0, 2); + normals[1] = new(0, 1, 0); + texcoords[1] = new(0.5f, 1.0f); + + // Vertex at (2, 0, 0) + vertices[2] = new(2, 0, 0); + normals[2] = new(0, 1, 0); + texcoords[2] = new(1, 0); + + // Upload mesh data from CPU (RAM) to GPU (VRAM) memory + UploadMesh(ref mesh, false); + + return mesh; + } }