pub struct PlaneSubdivision {
pub vertices: Vec<(f64, f64)>,
pub half_edges: Vec<(usize, usize)>,
}Expand description
Point location in planar subdivision.
Fields§
§vertices: Vec<(f64, f64)>§half_edges: Vec<(usize, usize)>Implementations§
Trait Implementations§
Source§impl Clone for PlaneSubdivision
impl Clone for PlaneSubdivision
Source§fn clone(&self) -> PlaneSubdivision
fn clone(&self) -> PlaneSubdivision
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PlaneSubdivision
impl RefUnwindSafe for PlaneSubdivision
impl Send for PlaneSubdivision
impl Sync for PlaneSubdivision
impl Unpin for PlaneSubdivision
impl UnsafeUnpin for PlaneSubdivision
impl UnwindSafe for PlaneSubdivision
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