diff options
| author | Nathan Stocks <cleancut@github.com> | 2022-02-24 15:35:35 -0700 |
|---|---|---|
| committer | Nathan Stocks <cleancut@github.com> | 2022-02-24 15:35:35 -0700 |
| commit | 4f9d21f4fdeb8772003617f64c2bdfda510d4e3f (patch) | |
| tree | cd72193bbfabdfcdc4baf4cce7cf74fb7bd79670 /src | |
| parent | 6d5f258af1a41aafb63f81d0114f1749f27b7c4d (diff) | |
| download | rapier-4f9d21f4fdeb8772003617f64c2bdfda510d4e3f.tar.gz rapier-4f9d21f4fdeb8772003617f64c2bdfda510d4e3f.tar.bz2 rapier-4f9d21f4fdeb8772003617f64c2bdfda510d4e3f.zip | |
derive Debug for IntegrationParameters
Diffstat (limited to 'src')
| -rw-r--r-- | src/dynamics/integration_parameters.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynamics/integration_parameters.rs b/src/dynamics/integration_parameters.rs index c1d3e26..9e3f686 100644 --- a/src/dynamics/integration_parameters.rs +++ b/src/dynamics/integration_parameters.rs @@ -1,7 +1,7 @@ use crate::math::Real; /// Parameters for a time-step of the physics engine. -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Debug)] #[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))] pub struct IntegrationParameters { /// The timestep length (default: `1.0 / 60.0`) |
