From 5ad398cce26fe73bc3f2dd7f2fe9b19667083c4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Bergstr=C3=B6m?= Date: Tue, 27 Aug 2019 01:10:45 +0200 Subject: [PATCH] Make face and alive properties public in DCEL --- src/dcel.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dcel.rs b/src/dcel.rs index 70735fa..8c7b74c 100644 --- a/src/dcel.rs +++ b/src/dcel.rs @@ -153,9 +153,9 @@ pub struct HalfEdge { pub twin: usize, // index of halfedge /// The index of the next halfedge pub next: usize, // index of halfedge - face: usize, // index of face + pub face: usize, // index of face prev: usize, // index of halfedge - alive: bool, + pub alive: bool, } impl fmt::Debug for HalfEdge { @@ -174,8 +174,8 @@ impl HalfEdge { #[derive(Debug)] /// A face of a DCEL pub struct Face { - outer_component: usize, // index of halfedge - alive: bool, + pub outer_component: usize, // index of halfedge + pub alive: bool, } impl fmt::Display for Face {