pub struct ProceduralGeometry {
pub name: String,
pub vertices: Vec<Vertex>,
pub indices: Vec<u32>,
pub base_color_factor: [f32; 4],
}Expand description
Description of a procedural model geometry.
Fields§
§name: String§vertices: Vec<Vertex>§indices: Vec<u32>§base_color_factor: [f32; 4]Auto Trait Implementations§
impl Freeze for ProceduralGeometry
impl RefUnwindSafe for ProceduralGeometry
impl Send for ProceduralGeometry
impl Sync for ProceduralGeometry
impl Unpin for ProceduralGeometry
impl UnsafeUnpin for ProceduralGeometry
impl UnwindSafe for ProceduralGeometry
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