pub struct LinePrimitive {
pub vertices: Vec<[f32; 3]>,
pub indices: Option<Vec<u32>>,
pub bounding_sphere: Sphere,
}Fields§
§vertices: Vec<[f32; 3]>§indices: Option<Vec<u32>>§bounding_sphere: SphereImplementations§
Source§impl LinePrimitive
impl LinePrimitive
Trait Implementations§
Source§impl Debug for LinePrimitive
impl Debug for LinePrimitive
Auto Trait Implementations§
impl Freeze for LinePrimitive
impl RefUnwindSafe for LinePrimitive
impl Send for LinePrimitive
impl Sync for LinePrimitive
impl Unpin for LinePrimitive
impl UnsafeUnpin for LinePrimitive
impl UnwindSafe for LinePrimitive
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