Struct nannou::draw::IntermediaryVertexDataRanges[][src]

pub struct IntermediaryVertexDataRanges {
    pub points: Range<usize>,
    pub colors: Range<usize>,
    pub tex_coords: Range<usize>,
}

A set of ranges into the IntermediaryVertexData.

This allows polygons, polylines, etc to track which slices of data are associated with their own instance.

Fields

Trait Implementations

impl Clone for IntermediaryVertexDataRanges
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IntermediaryVertexDataRanges
[src]

Formats the value using the given formatter. Read more

impl Default for IntermediaryVertexDataRanges
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations