Skip to content
Merged
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
11 changes: 9 additions & 2 deletions gbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
PointArray3D,
BoundingBox,
)
from .ellipse import (
from .gshape.gshape import GShape, GShape2D, GShape3D
from .gshape.ellipse import (
Circle,
Ellipse,
CirclesArray,
Expand All @@ -32,6 +33,10 @@
"PointArray3D",
"BoundingBox",
#
"GShape",
"GShape2D",
"GShape3D",
#
"Circle",
"Ellipse",
"CirclesArray",
Expand All @@ -42,6 +47,8 @@

# module order
# 0 __init__.py
# 1 ellipse, lines
# gshape
# b_box, ellipse, lines
# __init__.py
# 2 base
# 3 utils
3 changes: 3 additions & 0 deletions gbox/gshape/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
gshape, a subpackage of gbox, provides geometric shapes and their operations.
"""
Loading