Skip to content

Commit 5fe74ba

Browse files
committed
fix bug in model transformation
1 parent 1db2660 commit 5fe74ba

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
* Fixed bug in `compas_model.models.Model.transformation`.
15+
1416
### Removed
1517

1618

src/compas_model/models/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def kdtree(self) -> KDTree:
163163

164164
@property
165165
def transformation(self) -> Transformation:
166-
return self._frame
166+
return self._transformation
167167

168168
@transformation.setter
169169
def transformation(self, transformation: Transformation) -> None:

0 commit comments

Comments
 (0)