Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/dcel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down