pub struct Spring {
pub stiffness: f32,
pub damping: f32,
pub target_value: f32,
}
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 Freeze for Spring
impl RefUnwindSafe for Spring
impl Send for Spring
impl Sync for Spring
impl Unpin for Spring
impl UnwindSafe for Spring
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more