From 1bd42dc6939ee3d890e3421f4a86b4348e0db6c4 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 24 Feb 2023 16:10:41 +0100 Subject: [PATCH] Remove outdated implementation note --- crates/fj-kernel/src/geometry/path.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/crates/fj-kernel/src/geometry/path.rs b/crates/fj-kernel/src/geometry/path.rs index e8866e0f9..6ccd18ae2 100644 --- a/crates/fj-kernel/src/geometry/path.rs +++ b/crates/fj-kernel/src/geometry/path.rs @@ -1,21 +1,6 @@ //! Paths through 2D and 3D space //! //! See [`SurfacePath`] and [`GlobalPath`]. -//! -//! # Implementation Note -//! -//! This is a bit of an in-between module. It is closely associated with -//! [`Curve`] and [`Surface`]s, but paths are not really objects themselves, as -//! logically speaking, they are owned and not referenced. -//! -//! On the other hand, the types in this module don't follow the general style -//! of types in `fj-math`. -//! -//! We'll see how it shakes out. Maybe it will stay its own thing, maybe it will -//! move to `fj-math`, maybe something else entirely will happen. -//! -//! [`Curve`]: crate::objects::Curve -//! [`Surface`]: crate::objects::Surface use fj_math::{Circle, Line, Point, Scalar, Transform, Vector};