Skip to content

Commit

Permalink
fix bug in model transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Feb 1, 2025
1 parent 1db2660 commit 5fe74ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Fixed bug in `compas_model.models.Model.transformation`.

### Removed


Expand Down
2 changes: 1 addition & 1 deletion src/compas_model/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def kdtree(self) -> KDTree:

@property
def transformation(self) -> Transformation:
return self._frame
return self._transformation

@transformation.setter
def transformation(self, transformation: Transformation) -> None:
Expand Down

0 comments on commit 5fe74ba

Please sign in to comment.