Skip to content

Commit

Permalink
minor doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Plut committed Nov 16, 2021
1 parent a74f654 commit 81f631d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 2 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
- [x] clarify priority: `linear_extrude(8)*(5*object)`
- [x] projection of hollow sphere does not work: replace the temporary
fix by something better (but this is likely Clipper's fault)
- [ ] simple syntax for making conditionals (⇒ use those empty objects)
- [ ] or also allow `Nothing` in vectors of objects
- [x] even better, `EmptyUnion`
- [x] simple syntax for making conditionals (⇒ use those empty objects)
# Simple fixes
- [x] `atol`/`rtol` ?
- [x] auto-compute `offset` npoints from meshing options
Expand All @@ -26,6 +24,7 @@
- [ ] allow `NamedTuple` for this
- [ ] possible via `move(origin, s...; direction, spin)`
# Code cleaning
- [ ] replace `include` by something using `FileIO` e.g. `.cg.jl`?
- [x] https://www.usenix.org/legacy/event/usenix05/tech/freenix/full_papers/kirsch/kirsch.pdf : CSG tree normalization (only useful when using `convexity` rendering...)
- [x] split `Offset` in two structures `OffsetShape` and `OffsetVolume`
- [x] make transformations even lazier, so that they are evaluated only once
Expand Down
4 changes: 4 additions & 0 deletions docs/src/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ display(union(square(1)))
- symbolic complements are replaced by the appropriate values:
```@repl 0
display(intersect(square(1), ~circle(1), polygon([])))
```
- empty unions and intersections are removed:
```@repl 0
display(union(square(1),union(),circle(1)))
```

## Convex hull
Expand Down

2 comments on commit 81f631d

@plut
Copy link
Owner

@plut plut commented on 81f631d Nov 16, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register 0.2.0

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/48867

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" 81f631dec9e0aed6ce5b34350ad5d9f462e82260
git push origin v0.2.0

Please sign in to comment.