Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: geometry objects with new structure #373

Open
wants to merge 9 commits into
base: v3-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 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
3 changes: 3 additions & 0 deletions src/specklepy/objects/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .geometry import *

__all__ = ["Point", "Vector", "Plane"]
dogukankaratas marked this conversation as resolved.
Show resolved Hide resolved
300 changes: 0 additions & 300 deletions src/specklepy/objects/geometry.py

This file was deleted.

17 changes: 17 additions & 0 deletions src/specklepy/objects/geometry/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from .point import Point
from .line import Line
from .vector import Vector
from .polyline import Polyline
from .arc import Arc
from .mesh import Mesh
from .plane import Plane

__all__ = [
"Point",
"Vector",
"Line",
"Polyline",
"Mesh",
"Plane",
"Arc"
]
Loading