Skip to content

Commit

Permalink
WIP Add tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Feb 14, 2022
1 parent b82849f commit 86ff48e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/kernel/shapes/sweep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ impl Shape for fj::Sweep {
self.length,
));

// TASK: Iterate through `original_faces.vertices()`, sweep each one
// into an edge.
// TASK: Iterate through `original_faces.edges()`, sweep each one into
// a face. The previously created edges must be provided to the
// edge-to-face-sweep operation.

// This will only work correctly, if the original shape consists of one
// edge. If there are more, this will create some kind of weird face
// chimera, a single face to represent all the side faces.
Expand Down

0 comments on commit 86ff48e

Please sign in to comment.