Struct wavefront_obj::obj::Shape [−][src]
pub struct Shape {
pub primitive: Primitive,
pub groups: Vec<GroupName>,
pub smoothing_groups: Vec<u32>,
}
Expand description
A shape gathers a primitive and groups.
Each shape is associated with 0 or many groups. Those are text identifiers used to gather geometry elements into different groups.
Fields
primitive: Primitive
The primitive of the shape.
groups: Vec<GroupName>
Associated groups. No associated group means the shape uses the default group.
smoothing_groups: Vec<u32>
Associated smoothing groups. No associated smoothing group means the shape should be rendered flat.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Shape
impl UnwindSafe for Shape
Blanket Implementations
Mutably borrows from an owned value. Read more