Struct dae_parser::TaperedCapsule [−][src]
pub struct TaperedCapsule {
pub height: f32,
pub radius1: [f32; 2],
pub radius2: [f32; 2],
pub extra: Vec<Extra>,
}
Expand description
Describes a tapered capsule primitive that is centered on, and aligned with, the local y axis.
Fields
height: f32
The length of the line segment connecting the centers of the capping hemispheres.
radius1: [f32; 2]
The radii of the tapered capsule at the positive (height/2) Y value. Both ends of the tapered capsule may be elliptical.
radius2: [f32; 2]
The radii of the tapered capsule at the negative (height/2) Y value. Both ends of the tapered capsule 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 TaperedCapsule
impl Send for TaperedCapsule
impl Sync for TaperedCapsule
impl Unpin for TaperedCapsule
impl UnwindSafe for TaperedCapsule
Blanket Implementations
Mutably borrows from an owned value. Read more