-
Notifications
You must be signed in to change notification settings - Fork 3
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
carpet() gets cut at some viewpoints #5
Comments
Hi there! I think this might just be how the clipping works when there's no perspective. In your example, you're
222 units from the origin, but the carpet has radius 150, so at the front it's very close, probably too near to you to be drawn, and so it gets clipped. If you turn on the perspective, lines can be distorted more:
and you'll get a better idea of how close you are: I do struggle with this 3D stuff, I admit. While I consider Thebes.jl a bit of a toy, I occasionally find it useful for the odd logo... :) |
Now I see. Thanks for the explanation!
I think Thebes.jl is awesome! I never managed to use Makie.jl to produce a scene piece by piece like it is possible with Thebes.jl (like drawing spheres, etc.). I'm interested in using Julia to produce scientific diagrams/animations, small figures for publications, etc. Thebes.jl seems perfect for that. |
Ha, I'm not very confident that Thebes will satisfy your needs, but I'm very happy to help you establish its limitations... :) |
The following code produces the image below, which I find surprising:
By changing
θ
andϕ
, less or more of the xy circle gets shown. The same thing happens with@png
and@svg
. Am I missing something?Versions used:
The text was updated successfully, but these errors were encountered: