Skip to content

Commit

Permalink
Merge pull request #1169 from Licini/tree
Browse files Browse the repository at this point in the history
Tree
  • Loading branch information
tomvanmele authored Oct 24, 2023
2 parents 0757d64 + f3ef02b commit 6ff2f35
Show file tree
Hide file tree
Showing 5 changed files with 624 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

* Added `compas.datastructures.TreeNode` and `compas.datastructures.Tree` classes.
* Added `EllipseArtist` to `compas_rhino` and `compas_ghpython`.

### Changed
Expand Down
5 changes: 5 additions & 0 deletions src/compas/datastructures/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@

from .cell_network.cell_network import CellNetwork

from .tree.tree import Tree, TreeNode

BaseNetwork = Network
BaseMesh = Mesh
BaseVolMesh = VolMesh
Expand Down Expand Up @@ -277,6 +279,9 @@
"Feature",
"GeometricFeature",
"ParametricFeature",
# Trees
"Tree",
"TreeNode",
]

if not compas.IPY:
Expand Down
Empty file.
Loading

0 comments on commit 6ff2f35

Please sign in to comment.