Enum obj::raw::object::Polygon [−][src]
pub enum Polygon {
P(Vec<usize>),
PT(Vec<(usize, usize)>),
PN(Vec<(usize, usize)>),
PTN(Vec<(usize, usize, usize)>),
}
Expand description
The Polygon
type.
Variants
A polygon which contains only the position data of each vertex.
A polygon which contains both position and texture coordinate data of each vertex.
A polygon which contains both position and normal data of each vertex.
A polygon which contains all position, texture coordinate and normal data of each vertex.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Polygon
impl UnwindSafe for Polygon
Blanket Implementations
Mutably borrows from an owned value. Read more