From 139628b9cbe208e31e07704ad968c9fa8add310a Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 3 Apr 2025 12:40:11 +0200 Subject: [PATCH] Derive `Debug` for `Bivector` --- crates/fj-math/src/bivector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-math/src/bivector.rs b/crates/fj-math/src/bivector.rs index b5c5788d9..43407ef19 100644 --- a/crates/fj-math/src/bivector.rs +++ b/crates/fj-math/src/bivector.rs @@ -18,7 +18,7 @@ use crate::{Scalar, Vector}; /// I've decided that two vectors is good enough, and anything else not worth /// the trouble. But we might want to reconsider, once `generic_const_exprs` is /// stable. -#[derive(Clone, Copy, Eq, PartialEq, Hash, Ord, PartialOrd)] +#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)] #[repr(C)] pub struct Bivector { /// The first of the vectors whose outer product defines this bivector