diff --git a/crates/fj-kernel/src/partial/objects/curve.rs b/crates/fj-kernel/src/partial/objects/curve.rs index 233b6b2c7..0b3729aa8 100644 --- a/crates/fj-kernel/src/partial/objects/curve.rs +++ b/crates/fj-kernel/src/partial/objects/curve.rs @@ -11,9 +11,14 @@ use crate::{ /// See [`crate::partial`] for more information. #[derive(Clone, Debug, Default)] pub struct PartialCurve { - path: Option, - surface: Option>, - global_form: Option>, + /// The path that defines the [`Curve`] + pub path: Option, + + /// The surface that the [`Curve`] is defined in + pub surface: Option>, + + /// The global form of the [`Curve`] + pub global_form: Option>, } impl PartialCurve {