Trimesh constructor
Implementation
Trimesh(
this.vertices,
this.indices,
[
List<double>? normals,
this.uvs
]
):super(type: ShapeType.trimesh) {
updateEdges();
updateNormals();
normals = normals;
updateAABB();
updateBoundingSphereRadius();
updateTree();
}