Struct dae_parser::Spring
source · [−]Expand description
A spring constraint, used for both linear and angular constraints.
Fields
stiffness: f32
The stiffness
(also called spring coefficient)
has units of force/distance for spring_linear
or force/angle in degrees for spring_angular
.
damping: f32
The damping coefficient of the spring.
target_value: f32
The resting position of the spring.
Implementations
Trait Implementations
impl Copy for Spring
impl StructuralPartialEq for Spring
Auto Trait Implementations
impl RefUnwindSafe for Spring
impl Send for Spring
impl Sync for Spring
impl Unpin for Spring
impl UnwindSafe for Spring
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more