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
BoxFields of Box
size: [f64; 3] |
CylinderFields of Cylinder
radius: f64 | |
length: f64 |
SphereFields of Sphere
radius: f64 |
MeshFields of Mesh
filename: String | |
scale: [f64; 3] |
Trait Implementations
impl Debug for Geometry[src]
impl Clone for Geometry[src]
fn clone(&self) -> Geometry[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more