TryGetValue() for a nice time

This commit is contained in:
cinder
2025-05-28 19:34:27 -05:00
parent 800c4ba463
commit 79ef88c255
28 changed files with 105 additions and 111 deletions

View File

@@ -38,12 +38,14 @@ namespace OpenMetaverse.Rendering
Path path = GeneratePath();
Profile profile = GenerateProfile();
SimpleMesh mesh = new SimpleMesh();
mesh.Prim = prim;
mesh.Path = path;
mesh.Profile = profile;
mesh.Vertices = GenerateVertices();
mesh.Indices = GenerateIndices();
SimpleMesh mesh = new SimpleMesh
{
Prim = prim,
Path = path,
Profile = profile,
Vertices = GenerateVertices(),
Indices = GenerateIndices()
};
return mesh;
}