pub struct EdgeMesh {
pub nodes: Vec<[f64; 2]>,
pub edges: Vec<[usize; 2]>,
pub lengths: Vec<f64>,
pub arc_params: Vec<f64>,
}Expand description
1D edge mesh.
Fields§
§nodes: Vec<[f64; 2]>§edges: Vec<[usize; 2]>§lengths: Vec<f64>§arc_params: Vec<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeMesh
impl RefUnwindSafe for EdgeMesh
impl Send for EdgeMesh
impl Sync for EdgeMesh
impl Unpin for EdgeMesh
impl UnsafeUnpin for EdgeMesh
impl UnwindSafe for EdgeMesh
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