-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Documentation #165
Update Documentation #165
Conversation
If we want to drop support for Julia 1.0, we couĺd also incorporate lines 29-33 back: which will replace |
Also, is this PR mostly about the tutorial or also about docstrings? |
It is only about the tutorial in the documentation. But the plot recipes will need some further adjustments / improvements. |
Regarding the Julia 1.0 comment: |
r = r[2], | ||
φ = φ, | ||
θ = θ | ||
) - Ellipsoid{T,ClosedPrimitive,T,typeof(φ),typeof(θ)}( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be an OpenPrimitive
? Or do we want the inner radius excluded?
Also, treating a Sphere
with an inner radius r1 != 0
results in failing tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah correct, that should be an OpenPrimitive.
Yes, the IO is not perfect yet. Also for other primitives.
That is something I want to talk about but not tackle in this PR.
csguniontype --> :difference | ||
csg.a | ||
label --> "CSG" | ||
linestyle := isClosedPrimitive(ps[1]) ? :solid : :dot |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this means, that OpenPrimitives
are always the negative geometry of a CSGDifference
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. Differences of Differences switches Open an Closed and so on...
There is no ideal solution for plotting this. This is just a simple way to have a look at the CSG.
But for sure nothing for a publication.
No description provided.