From 2eecce819cca182538b702ae7727a6acfc3a5606 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sun, 29 Nov 2020 10:22:49 +0000 Subject: [PATCH] Removed comment about sweep path restriction that is no longer relevant. --- readme.md | 2 +- utils/sweep.scad | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index e98d6e8..c90340e 100644 --- a/readme.md +++ b/readme.md @@ -5852,7 +5852,7 @@ A sector of a circle between two angles. Utility to generate a polhedron by sweeping a 2D profile along a 3D path and utilities for generating paths. The initial orientation is the Y axis of the profile points towards the initial center of curvature, Frenet-Serret style. -This means the first three points must not be colinear. Subsequent rotations use the minimum rotation method. +Subsequent rotations use the minimum rotation method. The path can be open or closed. If closed sweep ensures that the start and end have the same rotation to line up. An additional twist around the path can be specified. If the path is closed this should be a multiple of 360. diff --git a/utils/sweep.scad b/utils/sweep.scad index 4a0e6e9..8f84c3a 100644 --- a/utils/sweep.scad +++ b/utils/sweep.scad @@ -21,7 +21,7 @@ //! Utility to generate a polhedron by sweeping a 2D profile along a 3D path and utilities for generating paths. //! //! The initial orientation is the Y axis of the profile points towards the initial center of curvature, Frenet-Serret style. -//! This means the first three points must not be colinear. Subsequent rotations use the minimum rotation method. +//! Subsequent rotations use the minimum rotation method. //! //! The path can be open or closed. If closed sweep ensures that the start and end have the same rotation to line up. //! An additional twist around the path can be specified. If the path is closed this should be a multiple of 360.