2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Update MeshGeneration example

This commit is contained in:
ChrisDill 2023-09-19 08:03:48 +01:00
parent e9220c14df
commit b3cab69ae9

View File

@ -30,7 +30,7 @@ public class MeshGeneration
Texture2D texture = LoadTextureFromImage(isChecked); Texture2D texture = LoadTextureFromImage(isChecked);
UnloadImage(isChecked); UnloadImage(isChecked);
Model[] models = new Model[7]; Model[] models = new Model[9];
models[0] = LoadModelFromMesh(GenMeshPlane(2, 2, 5, 5)); models[0] = LoadModelFromMesh(GenMeshPlane(2, 2, 5, 5));
models[1] = LoadModelFromMesh(GenMeshCube(2.0f, 1.0f, 2.0f)); 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[4] = LoadModelFromMesh(GenMeshCylinder(1, 2, 16));
models[5] = LoadModelFromMesh(GenMeshTorus(0.25f, 4.0f, 16, 32)); models[5] = LoadModelFromMesh(GenMeshTorus(0.25f, 4.0f, 16, 32));
models[6] = LoadModelFromMesh(GenMeshKnot(1.0f, 2.0f, 16, 128)); 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 // Set isChecked texture as default diffuse component for all models material
for (int i = 0; i < models.Length; i++) for (int i = 0; i < models.Length; i++)
@ -117,6 +119,12 @@ public class MeshGeneration
case 6: case 6:
DrawText("KNOT", 680, 10, 20, Color.DARKBLUE); DrawText("KNOT", 680, 10, 20, Color.DARKBLUE);
break; break;
case 7:
DrawText("POLY", 680, 10, 20, Color.DARKBLUE);
break;
case 8:
DrawText("Custom (triagnle)", 580, 10, 20, Color.DARKBLUE);
break;
default: default:
break; break;
} }
@ -137,4 +145,36 @@ public class MeshGeneration
return 0; 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<Vector3> vertices = mesh.VerticesAs<Vector3>();
Span<Vector2> texcoords = mesh.TexCoordsAs<Vector2>();
Span<Vector3> normals = mesh.NormalsAs<Vector3>();
// 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;
}
} }