From d2d5a62458472424d366858a3a653c4a96aa03a1 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Sun, 29 Oct 2023 00:15:51 -0700 Subject: [PATCH] implement vert --- src/model_physics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model_physics.rs b/src/model_physics.rs index 2abc347..ec7364b 100644 --- a/src/model_physics.rs +++ b/src/model_physics.rs @@ -59,7 +59,7 @@ impl MeshQuery for PhysicsMesh{ } //ideally I never calculate the vertex position, but I have to for the graphical meshes... fn vert(&self,vert_id:VertId)->Planar64Vec3{ - todo!() + self.verts[vert_id.0].0 } fn face_edges(&self,face_id:FaceId)->Cow>{ Cow::Borrowed(&self.face_topology[face_id.0].edges)