pub struct CartesianBounds {
pub x_min: Option<f64>,
pub x_max: Option<f64>,
pub y_min: Option<f64>,
pub y_max: Option<f64>,
pub z_min: Option<f64>,
pub z_max: Option<f64>,
}Expand description
Optional minimum and maximum values for Cartesian X, Y and Z coordinates.
Represents an axis-aligned bounding box of Cartesian coordinates.
Fields§
§x_min: Option<f64>§x_max: Option<f64>§y_min: Option<f64>§y_max: Option<f64>§z_min: Option<f64>§z_max: Option<f64>Trait Implementations§
Source§impl Clone for CartesianBounds
impl Clone for CartesianBounds
Source§fn clone(&self) -> CartesianBounds
fn clone(&self) -> CartesianBounds
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 CartesianBounds
impl Debug for CartesianBounds
Source§impl Default for CartesianBounds
impl Default for CartesianBounds
Source§fn default() -> CartesianBounds
fn default() -> CartesianBounds
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CartesianBounds
impl RefUnwindSafe for CartesianBounds
impl Send for CartesianBounds
impl Sync for CartesianBounds
impl Unpin for CartesianBounds
impl UnwindSafe for CartesianBounds
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