Un-derive Copy from SweptCurve

The `curve` field needs to become a `Box<dyn CurveGeometry>`, and that
can't be `Copy`.
This commit is contained in:
Hanno Braun 2025-04-08 11:21:15 +02:00
parent bca6367a35
commit 6b91b3e3ce

View File

@ -1,6 +1,6 @@
use fj_math::{Line, Point, Transform, Vector};
#[derive(Clone, Copy, Debug)]
#[derive(Clone, Debug)]
pub struct SweptCurve {
pub curve: Line<3>,
pub path: Vector<3>,