Enum scad_generator::CircleType
[−]
[src]
pub enum CircleType { Radius(f32), Diameter(f32), }
Since scad allows creation of circle like objects using either radius or diameter, this enum specifies which format to use
Variants
Radius(f32)
Diameter(f32)
Trait Implementations
impl Clone for CircleType
[src]
fn clone(&self) -> CircleType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more