diff --git a/src/geometry/translation_construction.rs b/src/geometry/translation_construction.rs index d55c43c2..a973603d 100644 --- a/src/geometry/translation_construction.rs +++ b/src/geometry/translation_construction.rs @@ -66,7 +66,8 @@ where { #[inline] fn arbitrary(rng: &mut G) -> Self { - Self::from(Arbitrary::arbitrary(rng)) + let v: VectorN = Arbitrary::arbitrary(rng); + Self::from(v) } }