Struct dae_parser::TaperedCylinder [−][src]
pub struct TaperedCylinder {
pub height: f32,
pub radius1: [f32; 2],
pub radius2: [f32; 2],
pub extra: Vec<Extra>,
}
Expand description
Describes a tapered cylinder primitive that is centered on and aligned with the local y axis.
Fields
height: f32
The length of the cylinder along the y axis.
radius1: [f32; 2]
The radii of the tapered cylinder at the positive (height/2) Y value. Both ends of the tapered cylinder may be elliptical.
radius2: [f32; 2]
The radii of the tapered cylinder at the negative (height/2) Y value. Both ends of the tapered cylinder may be elliptical.
extra: Vec<Extra>
Provides arbitrary additional information about this element.
Implementations
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for TaperedCylinder
impl Send for TaperedCylinder
impl Sync for TaperedCylinder
impl Unpin for TaperedCylinder
impl UnwindSafe for TaperedCylinder
Blanket Implementations
Mutably borrows from an owned value. Read more