pub struct FrBounds3d {
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
3D bounding box constraints.
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 FrBounds3d
impl Clone for FrBounds3d
Source§fn clone(&self) -> FrBounds3d
fn clone(&self) -> FrBounds3d
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 FrBounds3d
impl Debug for FrBounds3d
Source§impl Default for FrBounds3d
impl Default for FrBounds3d
Source§fn default() -> FrBounds3d
fn default() -> FrBounds3d
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FrBounds3d
impl RefUnwindSafe for FrBounds3d
impl Send for FrBounds3d
impl Sync for FrBounds3d
impl Unpin for FrBounds3d
impl UnsafeUnpin for FrBounds3d
impl UnwindSafe for FrBounds3d
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