Enum gltf_json::mesh::Mode
[−]
[src]
pub enum Mode {
Points,
Lines,
LineLoop,
LineStrip,
Triangles,
TriangleStrip,
TriangleFan,
}The type of primitives to render.
Variants
PointsCorresponds to GL_POINTS.
LinesCorresponds to GL_LINES.
LineLoopCorresponds to GL_LINE_LOOP.
LineStripCorresponds to GL_LINE_STRIP.
TrianglesCorresponds to GL_TRIANGLES.
TriangleStripCorresponds to GL_TRIANGLE_STRIP.
TriangleFanCorresponds to GL_TRIANGLE_FAN.
Trait Implementations
impl Clone for Mode[src]
fn clone(&self) -> Mode[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for Mode[src]
impl Debug for Mode[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for Mode[src]
fn eq(&self, __arg_0: &Mode) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.