Skip to content

Commit 4d952a2

Browse files
committed
geometry cleanup
1 parent 9baa03a commit 4d952a2

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

src/compas/geometry/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,10 @@
7171
7272
Vector
7373
Point
74-
Circle
7574
Line
76-
Frame
77-
Plane
7875
Polyline
7976
Polygon
8077
Polyhedron
81-
Spline
82-
Surface
8378
8479
.. autosummary::
8580
:toctree: generated/

src/compas/geometry/objects/__init__.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,24 @@
22
from .point import Point
33

44
from .line import Line
5-
from .plane import Plane
6-
from .frame import Frame
5+
#from .plane import Plane
6+
#from .frame import Frame
77

88
from .polyline import Polyline
99
from .polygon import Polygon
1010
from .polyhedron import Polyhedron
1111

12-
from .circle import Circle
12+
#from .circle import Circle
1313

14-
from .spline import Spline
15-
from .surface import Surface
14+
#from .spline import Spline
15+
#from .surface import Surface
1616

1717
from .kdtree import KDTree
1818

1919

2020
__all__ = [
2121
'Vector', 'Point',
22-
'Line', 'Plane', 'Frame',
22+
'Line',
2323
'Polyline', 'Polygon', 'Polyhedron',
24-
'Circle',
25-
'Spline', 'Surface',
2624
'KDTree'
2725
]

src/compas/geometry/objects/circle.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414

1515
class Circle(object):
16+
"""NOT IMPLEMENTED YET.
17+
"""
1618
pass
1719

1820

src/compas/geometry/objects/frame.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414

1515
class Frame(object):
16+
"""NOT IMPLEMENTED YET.
17+
"""
1618
pass
1719

1820

src/compas/geometry/objects/surface.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414

1515
class Surface(object):
16+
"""NOT IMPLEMENTED YET.
17+
"""
1618
pass
1719

1820

0 commit comments

Comments
 (0)