diff --git a/experiments/2024-10-30/src/math.rs b/experiments/2024-10-30/src/math.rs index 7e379a88c..cb60f423f 100644 --- a/experiments/2024-10-30/src/math.rs +++ b/experiments/2024-10-30/src/math.rs @@ -1,6 +1,6 @@ pub type Point = [Scalar; 3]; -#[derive(Clone, Copy)] +#[derive(Clone, Copy, PartialEq, PartialOrd)] pub struct Scalar { value: f64, }