Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions flow360/component/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"""Flow360 Component Module"""

from flow360.component.geometry_tree import (
CollectionTreeSearch,
GeometryTree,
NodeCollection,
NodeType,
TreeNode,
TreeSearch,
)

__all__ = [
"CollectionTreeSearch",
"GeometryTree",
"NodeCollection",
"NodeType",
"TreeNode",
"TreeSearch",
]

# Note: FaceGroup is available but not exported here to avoid circular imports.
# Import it directly when needed: from flow360.component.geometry import FaceGroup



Loading
Loading