Struct three::Shape [] [src]

pub struct Shape {
    pub vertices: Vec<Point3<f32>>,
    pub normals: Vec<Vector3<f32>>,
    pub tangents: Vec<Vector4<f32>>,
}

A geometry shape.

Fields

Vertices.

Normals.

Tangents.

Trait Implementations

impl Clone for Shape
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Shape
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for Shape
[src]

[src]

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

Auto Trait Implementations

impl Send for Shape

impl Sync for Shape