Skip to content

Commit 927dd0b

Browse files
committed
merge halfedge into mesh
1 parent b1e8303 commit 927dd0b

File tree

6 files changed

+4039
-934
lines changed

6 files changed

+4039
-934
lines changed

CHANGELOG.md

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

1414
### Changed
1515

16+
* Merged `compas.datastructures.Halfedge` into `compas.datastructures.Mesh`.
1617
* Merged `compas.datastructures.Network` into `compas.datastructures.Graph`.
1718

1819
### Removed
1920

2021
* Removed `compas.datastructures.Network`.
22+
* Removed `compas.datastructures.Halfedge`.
2123

2224
## [2.0.0-beta.2] 2024-01-12
2325

src/compas/datastructures/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
# =============================================================================
5353

5454
from .graph.graph import Graph
55+
from .network.network import Network
5556
from .halfedge.halfedge import HalfEdge
5657
from .mesh.mesh import Mesh
5758
from .halfface.halfface import HalfFace
@@ -67,7 +68,7 @@
6768
__all__ = [
6869
"Datastructure",
6970
"CellNetwork",
70-
"Graph",
71+
"Network",
7172
"HalfEdge",
7273
"Mesh",
7374
"HalfFace",

0 commit comments

Comments
 (0)