Skip to content

Commit 8854aab

Browse files
committed
updated changelog. formatting.
1 parent 8f416a3 commit 8854aab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
### Changed
1717

1818
* Updated workflows to v2.
19+
* Changed deepcopy of `RhinoBrep` to use the native `Rhino.Geometry` mechanism.
1920

2021
### Removed
2122

src/compas_rhino/geometry/brep/brep.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ def data(self, data):
9393

9494
def copy(self, cls=None):
9595
"""Creates a copy of this Brep using the native Rhino.Geometry.Brep copying mechanism.
96-
96+
9797
Returns
9898
-------
9999
:class:`~compas_rhino.geometry.RhinoBrep`
100-
100+
101101
"""
102102
return RhinoBrep.from_native(self._brep.DuplicateBrep())
103103

0 commit comments

Comments
 (0)