Skip to content
Discussion options

You must be logged in to vote
  1. What is this? (red arrow) Is "seam" the correct term?

Yes

  1. Can I choose not to show it when exporting ?

You can hide edges with cadquery.vis visualization per item styling.

Example:

Set edges=False to hide edges.

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.

Replies: 1 comment

Comment options

You must be logged in to vote
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
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1894 on September 05, 2025 12:04.