pub struct HullDataView<'a> {
pub header: &'a HullData,
pub vertices: &'a [HullVertex],
pub points: &'a [Vec3],
pub edges: &'a [HullHalfEdge],
pub faces: &'a [HullFace],
pub planes: &'a [Plane],
}Expand description
Borrowed view of hull geometry (owned hull or box hull).
Fields§
§header: &'a HullData§vertices: &'a [HullVertex]§points: &'a [Vec3]§edges: &'a [HullHalfEdge]§faces: &'a [HullFace]§planes: &'a [Plane]Auto Trait Implementations§
impl<'a> Freeze for HullDataView<'a>
impl<'a> RefUnwindSafe for HullDataView<'a>
impl<'a> Send for HullDataView<'a>
impl<'a> Sync for HullDataView<'a>
impl<'a> Unpin for HullDataView<'a>
impl<'a> UnsafeUnpin for HullDataView<'a>
impl<'a> UnwindSafe for HullDataView<'a>
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