pub struct CwCell {
pub id: usize,
pub dim: usize,
pub label: String,
pub coords: Option<[f64; 3]>,
pub boundary: Vec<usize>,
pub boundary_signs: Vec<i32>,
}Expand description
A single cell in a CW complex of dimension dim.
A 0-cell is a vertex, a 1-cell is an edge, a 2-cell is a face, etc.
Fields§
§id: usizeUnique cell identifier.
dim: usizeCell dimension.
label: StringLabel / name (optional).
coords: Option<[f64; 3]>Vertex coordinates for 0-cells (ignored for higher cells).
boundary: Vec<usize>Indices of the boundary cells (cells of dimension dim-1).
boundary_signs: Vec<i32>Incidence signs (+1 or −1) corresponding to each boundary cell.
Implementations§
Source§impl CwCell
impl CwCell
Sourcepub fn edge(id: usize, from: usize, to: usize) -> Self
pub fn edge(id: usize, from: usize, to: usize) -> Self
Create a 1-cell (edge) between vertex from and vertex to.
Sourcepub fn face(id: usize, boundary_edges: Vec<usize>, signs: Vec<i32>) -> Self
pub fn face(id: usize, boundary_edges: Vec<usize>, signs: Vec<i32>) -> Self
Create a 2-cell (face) with an ordered list of boundary edges and signs.
Trait Implementations§
impl StructuralPartialEq for CwCell
Auto Trait Implementations§
impl Freeze for CwCell
impl RefUnwindSafe for CwCell
impl Send for CwCell
impl Sync for CwCell
impl Unpin for CwCell
impl UnsafeUnpin for CwCell
impl UnwindSafe for CwCell
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.