Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Carnutes/utils/interact_with_rhino.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def determinate_element_type(geo):

def create_model_from_rhino_selection(max_elements: int = 100000):
"""
Create a model from the selected breps or lines in the Rhino scene.
Create a model from the selected lines in the Rhino scene.

:param max_elements: int
The maximum number of elements that can be selected. Default is 100000.
Expand All @@ -38,7 +38,7 @@ def create_model_from_rhino_selection(max_elements: int = 100000):
"""

go = Rhino.Input.Custom.GetObject()
go.SetCommandPrompt("Select the breps or lines")
go.SetCommandPrompt("Select the lines")
go.GeometryFilter = (
Rhino.DocObjects.ObjectType.Brep
| Rhino.DocObjects.ObjectType.Curve
Expand Down
Loading