From 136c77c65cc667fd5634c45f95c11135b32608c8 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 20 Nov 2023 16:57:20 -0800 Subject: [PATCH] debug --- src/face_crawler.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/face_crawler.rs b/src/face_crawler.rs index 5b38d91..623608e 100644 --- a/src/face_crawler.rs +++ b/src/face_crawler.rs @@ -121,6 +121,14 @@ pub fn crawl_fev{ + let a=mesh.face_nd(face_id); + println!("face_n={}",a.0); + }, + &FEV::Edge(edge_id)=>println!("edge_n={} verts={:?}",mesh.edge_n(edge_id),mesh.edge_verts(edge_id)), + &FEV::Vert(vert_id)=>println!("vert={}",mesh.vert(vert_id)), + } match next_transition(&fev,time,mesh,relative_body,time_limit){ Transition::Miss=>return CrawlResult::Miss(fev), Transition::Next(next_fev,next_time)=>(fev,time)=(next_fev,next_time),