pub struct KkBounds3d {
pub minx: Option<Vec<f64>>,
pub maxx: Option<Vec<f64>>,
pub miny: Option<Vec<f64>>,
pub maxy: Option<Vec<f64>>,
pub minz: Option<Vec<f64>>,
pub maxz: Option<Vec<f64>>,
}Expand description
Per-vertex coordinate bounds for the 3D KK layout.
Fields§
§minx: Option<Vec<f64>>Minimum x coordinate per vertex.
maxx: Option<Vec<f64>>Maximum x coordinate per vertex.
miny: Option<Vec<f64>>Minimum y coordinate per vertex.
maxy: Option<Vec<f64>>Maximum y coordinate per vertex.
minz: Option<Vec<f64>>Minimum z coordinate per vertex.
maxz: Option<Vec<f64>>Maximum z coordinate per vertex.
Trait Implementations§
Source§impl Clone for KkBounds3d
impl Clone for KkBounds3d
Source§fn clone(&self) -> KkBounds3d
fn clone(&self) -> KkBounds3d
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 moreSource§impl Debug for KkBounds3d
impl Debug for KkBounds3d
Source§impl Default for KkBounds3d
impl Default for KkBounds3d
Source§fn default() -> KkBounds3d
fn default() -> KkBounds3d
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for KkBounds3d
impl RefUnwindSafe for KkBounds3d
impl Send for KkBounds3d
impl Sync for KkBounds3d
impl Unpin for KkBounds3d
impl UnsafeUnpin for KkBounds3d
impl UnwindSafe for KkBounds3d
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