Enum obj::raw::object::Line [] [src]

pub enum Line {
    P(Vec<usize>),
    PT(Vec<(usize, usize)>),
}

The Line type.

Variants

P(Vec<usize>)

A series of line segments which contain only the position data of each vertex

PT(Vec<(usize, usize)>)

A series of line segments which contain both position and texture coordinate data of each vertex

Trait Implementations

impl Debug for Line
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Line
[src]

fn clone(&self) -> Line

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Eq for Line
[src]

impl PartialEq for Line
[src]

fn eq(&self, __arg_0: &Line) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Line) -> bool

This method tests for !=.