Enum ncollide3d::procedural::IndexBuffer [] [src]

pub enum IndexBuffer {
    Unified(Vec<Point3<u32>>),
    Split(Vec<Point3<Point3<u32>>>),
}

Different representations of the index buffer.

Variants

The vertex, normal, and uvs share the same indices.

The vertex, normal, and uvs have different indices.

Methods

impl IndexBuffer
[src]

[src]

Returns the unified index buffer data or fails.

[src]

Returns the split index buffer data or fails.

Trait Implementations

impl Clone for IndexBuffer
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for IndexBuffer
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for IndexBuffer

impl Sync for IndexBuffer