From 54b7c877e3ccd77223da3fbd3aeac73124b61cd2 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 24 Oct 2024 18:58:10 +0200 Subject: [PATCH] Update doc comment --- crates/fj-core/src/geometry/geometry.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/crates/fj-core/src/geometry/geometry.rs b/crates/fj-core/src/geometry/geometry.rs index 296cd7cad..31734d19a 100644 --- a/crates/fj-core/src/geometry/geometry.rs +++ b/crates/fj-core/src/geometry/geometry.rs @@ -197,7 +197,14 @@ impl Geometry { self.vertex.get(vertex) } - /// # Access the geometry generator for the provided curve + /// # Access the geometry of the provided curve + /// + /// ## Implementation Note + /// + /// There currently is an ongoing transition to a new geometry system. This + /// method returns new-style geometry. Its name is temporary, while the + /// method returning the old-style geometry is still taking up the more + /// concise name. pub fn of_curve_2(&self, curve: &Handle) -> Option<&CurveGeom2> { self.curves.get(curve) }