From 282a2dfd328f2f8f1dea7b0aa162fcc9ff2c059f Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 23 Nov 2023 16:31:16 +0100 Subject: [PATCH] Update doc comment of `operations::sweep` --- crates/fj-core/src/operations/sweep/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/fj-core/src/operations/sweep/mod.rs b/crates/fj-core/src/operations/sweep/mod.rs index bb9241ecc..6c92b59ef 100644 --- a/crates/fj-core/src/operations/sweep/mod.rs +++ b/crates/fj-core/src/operations/sweep/mod.rs @@ -1,4 +1,7 @@ -//! Sweeping objects along a path to create new objects +//! Sweep objects along a path to create new objects +//! +//! Sweeps 1D or 2D objects along a straight path, creating a 2D or 3D object, +//! respectively. mod face; mod half_edge;