Add implementation note

This commit is contained in:
Hanno Braun 2022-11-11 14:37:10 +01:00
parent 651cd6bfa3
commit 0e44127ebd
1 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,12 @@ pub struct PartialCurve {
pub surface: Option<Handle<Surface>>, pub surface: Option<Handle<Surface>>,
/// The global form of the [`Curve`] /// The global form of the [`Curve`]
///
/// # Implementation Note
///
/// This can in principle be simplified to just `MaybePartial<GlobalForm`,
/// but as of this writing, there's still some code that relies on this
/// being an `Option`.
pub global_form: Option<MaybePartial<GlobalCurve>>, pub global_form: Option<MaybePartial<GlobalCurve>>,
} }