Run cargo fmt

This commit is contained in:
Sébastien Crozet
2022-01-23 18:04:24 +01:00
parent 536122e080
commit 0c7ebae1aa
7 changed files with 14 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ use na::{
};
#[repr(C)]
#[derive(Copy, Clone, Debug,Default)]
#[derive(Copy, Clone, Debug, Default)]
struct Force {
linear: Vector<Real>,
angular: AngVector<Real>,
@@ -91,7 +91,7 @@ pub struct Multibody {
coriolis_w: Vec<OMatrix<Real, AngDim, Dynamic>>,
i_coriolis_dt: Jacobian<Real>,
}
impl Default for Multibody{
impl Default for Multibody {
fn default() -> Self {
Multibody::new()
}