Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter committed Feb 17, 2024
1 parent a92e8f5 commit ea57d25
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/features/impl_rand.rs
Expand Up @@ -17,7 +17,7 @@ macro_rules! impl_vec_type {
let b: $vec = rng2.gen();
assert_eq!(a, Into::<[$t; $dim]>::into(b));
}
}
};
}

macro_rules! impl_mat_type {
Expand All @@ -39,7 +39,7 @@ macro_rules! impl_mat_type {
let b = rng2.gen::<$mat>();
assert_eq!(a, b);
}
}
};
}

macro_rules! impl_quat_type {
Expand All @@ -65,7 +65,7 @@ macro_rules! impl_quat_type {
let b: $quat = rng2.gen();
assert_eq!(a, b);
}
}
};
}

macro_rules! impl_vec_types {
Expand All @@ -87,7 +87,9 @@ macro_rules! impl_float_types {
}

mod f32 {
use crate::{Mat2, Mat2A, Mat3, Mat3A, Mat4, Mat4A, Quat, QuatA, Vec2, Vec3, Vec3A, Vec4, Vec4A};
use crate::{
Mat2, Mat2A, Mat3, Mat3A, Mat4, Mat4A, Quat, QuatA, Vec2, Vec3, Vec3A, Vec4, Vec4A,
};
use core::f32::consts::PI;
use rand::{
distributions::{Distribution, Standard},
Expand Down

0 comments on commit ea57d25

Please sign in to comment.