Enum urdf_rs::Geometry [] [src]

pub enum Geometry {
    Box {
        size: [f64; 3],
    },
    Cylinder {
        radius: f64,
        length: f64,
    },
    Sphere {
        radius: f64,
    },
    Mesh {
        filename: String,
        scale: [f64; 3],
    },
}

Variants

Fields of Box

Fields of Cylinder

Fields of Sphere

Fields of Mesh

Trait Implementations

impl Debug for Geometry
[src]

[src]

Formats the value using the given formatter.

impl Clone for Geometry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Geometry
[src]

[src]

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