pub struct MeshBBox {
pub min: [f64; 3],
pub max: [f64; 3],
}Expand description
An axis-aligned bounding box of a mesh.
Fields§
§min: [f64; 3]§max: [f64; 3]Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MeshBBox
impl<'de> Deserialize<'de> for MeshBBox
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for MeshBBox
impl StructuralPartialEq for MeshBBox
Auto Trait Implementations§
impl Freeze for MeshBBox
impl RefUnwindSafe for MeshBBox
impl Send for MeshBBox
impl Sync for MeshBBox
impl Unpin for MeshBBox
impl UnsafeUnpin for MeshBBox
impl UnwindSafe for MeshBBox
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