[−][src]Struct rust_3d::Box3D
Box3D, a box in 3D space
Fields
center: Point3Dsize_x: Positivesize_y: Positivesize_z: PositiveMethods
impl Box3D[src]
pub fn min_p(&self) -> Point3D[src]
Returns the minimum position of the box
pub fn max_p(&self) -> Point3D[src]
Returns the maximum position of the box
pub fn sizes(&self) -> (Positive, Positive, Positive)[src]
Returns the sizes of the bounding box
Trait Implementations
impl HasBoundingBox3D for Box3D[src]
fn bounding_box(&self) -> BoundingBox3D[src]
impl HasBoundingBox3DMaybe for Box3D[src]
fn bounding_box_maybe(&self) -> Result<BoundingBox3D>[src]
impl IsEditable3D for Box3D[src]
fn set_x(&mut self, val: f64)[src]
fn set_y(&mut self, val: f64)[src]
fn set_z(&mut self, val: f64)[src]
fn set_xyz(&mut self, x: f64, y: f64, z: f64)[src]
fn set_xy(&mut self, x: f64, y: f64)[src]
fn set_xz(&mut self, x: f64, z: f64)[src]
fn set_yz(&mut self, y: f64, z: f64)[src]
fn increase_distance_to_by<P>(&mut self, other: &P, factor: Positive) where
P: Is3D, [src]
P: Is3D,
fn add<P>(&mut self, other: &P) where
P: Is3D, [src]
P: Is3D,
fn subtract<P>(&mut self, other: &P) where
P: Is3D, [src]
P: Is3D,
fn scale_pos(&mut self, val: f64)[src]
impl IsEditableND for Box3D[src]
impl IsBuildable3D for Box3D[src]
fn new(x: f64, y: f64, z: f64) -> Self[src]
fn from<P>(&mut self, other: &P) where
P: Is3D, [src]
P: Is3D,
fn new_from<P>(other: &P) -> Self where
P: Is3D, [src]
P: Is3D,
fn multiply_m(&self, m: &Matrix4) -> Self[src]
fn normalized(&self) -> Result<Self>[src]
fn zero() -> Self[src]
fn parse(text: String) -> Result<Self>[src]
impl IsBuildableND for Box3D[src]
fn new_nd(coords: &[f64]) -> Result<Self>[src]
fn from_nd<P>(&mut self, other: P) -> Result<()> where
P: IsBuildableND, [src]
P: IsBuildableND,
fn zero_nd() -> Result<Self>[src]
fn center<P>(&self, other: &P) -> Result<Self> where
P: IsND, [src]
P: IsND,
impl Is3D for Box3D[src]
fn x(&self) -> f64[src]
fn y(&self) -> f64[src]
fn z(&self) -> f64[src]
fn xyz(&self) -> (f64, f64, f64)[src]
fn xy(&self) -> (f64, f64)[src]
fn xz(&self) -> (f64, f64)[src]
fn yz(&self) -> (f64, f64)[src]
fn dot(&self, other: &dyn Is3D) -> f64[src]
fn abs(&self) -> NonNegative[src]
fn rad_to(&self, other: &dyn Is3D) -> Rad[src]
fn to_str(&self) -> String[src]
impl IsMovable3D for Box3D[src]
impl IsScalable for Box3D[src]
impl IsND for Box3D[src]
fn n_dimensions() -> usize[src]
fn position_nd(&self, dimension: usize) -> Result<f64>[src]
impl From<BoundingBox3D> for Box3D[src]
fn from(x: BoundingBox3D) -> Self[src]
impl Clone for Box3D[src]
impl Default for Box3D[src]
impl Eq for Box3D[src]
impl Ord for Box3D[src]
fn cmp(&self, other: &Self) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> Self1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Box3D> for Box3D[src]
impl PartialOrd<Box3D> for Box3D[src]
fn partial_cmp(&self, other: &Box3D) -> Option<Ordering>[src]
fn lt(&self, other: &Box3D) -> bool[src]
fn le(&self, other: &Box3D) -> bool[src]
fn gt(&self, other: &Box3D) -> bool[src]
fn ge(&self, other: &Box3D) -> bool[src]
impl Debug for Box3D[src]
impl Hash for Box3D[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl StructuralPartialEq for Box3D[src]
Auto Trait Implementations
impl Send for Box3D
impl Sync for Box3D
impl Unpin for Box3D
impl UnwindSafe for Box3D
impl RefUnwindSafe for Box3D
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,