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] |