We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f416a3 commit 8854aabCopy full SHA for 8854aab
CHANGELOG.md
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
### Changed
17
18
* Updated workflows to v2.
19
+* Changed deepcopy of `RhinoBrep` to use the native `Rhino.Geometry` mechanism.
20
21
### Removed
22
src/compas_rhino/geometry/brep/brep.py
@@ -93,11 +93,11 @@ def data(self, data):
93
94
def copy(self, cls=None):
95
"""Creates a copy of this Brep using the native Rhino.Geometry.Brep copying mechanism.
96
-
+
97
Returns
98
-------
99
:class:`~compas_rhino.geometry.RhinoBrep`
100
101
"""
102
return RhinoBrep.from_native(self._brep.DuplicateBrep())
103
0 commit comments