How can I disable "seams" on circle/torus when exporting/showing? #1895
-
![]()
|
Beta Was this translation helpful? Give feedback.
Answered by
lorenzncode
Sep 4, 2025
Replies: 1 comment
-
Yes
You can hide edges with Example: Set from cadquery.func import *
from cadquery.vis import *
sph = sphere(10)
show(
style(sph, color="green", edges=False),
style(sph.moved(z=15), color="red", edges=True),
width=800,
height=800,
) ![]() Currently, the styling feature is available in the master branch not in the release version. If you mean exporting to image, latest master also has a screenshot feature - see #1883. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adam-urbanczyk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes
You can hide edges with
cadquery.vis
visualization per item styling.Example:
Set
edges=False
to hide edges.Currently, the styling feature is available in the master branch not in the release version.
If you mean exporting to image, latest master also has a screenshot feature - see #1883.