From d13071bbd04f9707fb1b8aeff29bfc9ef6017e0c Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 10 Jun 2024 20:57:06 +0200 Subject: [PATCH] Derive `Debug` for `CurveGeom` --- crates/fj-core/src/geometry/curve.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/geometry/curve.rs b/crates/fj-core/src/geometry/curve.rs index ba9c50ae7..6362a138a 100644 --- a/crates/fj-core/src/geometry/curve.rs +++ b/crates/fj-core/src/geometry/curve.rs @@ -5,7 +5,7 @@ use crate::{storage::Handle, topology::Surface}; use super::SurfacePath; /// The geometric definition of a curve -#[derive(Clone, Default)] +#[derive(Clone, Debug, Default)] pub struct CurveGeom { /// # The redundant local definitions of the curve geometry /// @@ -42,7 +42,7 @@ impl CurveGeom { } /// The geometric definition of a curve in 2D surface coordinates -#[derive(Clone)] +#[derive(Clone, Debug)] pub struct LocalCurveGeom { /// The path that defines the curve on its surface pub path: SurfacePath,