Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make face and alive properties public in DCEL #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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