Skip to content

Commit 6136601

Browse files
committed
cad packages
1 parent 17734b8 commit 6136601

70 files changed

Lines changed: 7 additions & 498 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/compas_blender/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@
2020

2121
INSTALLATION_ARGUMENTS = None
2222

23-
24-
__all__ = [
25-
"INSTALLABLE_PACKAGES",
26-
"SUPPORTED_VERSIONS",
27-
"DEFAULT_VERSION",
28-
"clear",
29-
"redraw",
30-
]
31-
3223
__all_plugins__ = [
3324
"compas_blender.geometry.booleans",
3425
"compas_blender.install",

src/compas_ghpython/__init__.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,6 @@
1616

1717
__version__ = "2.15.0"
1818

19-
__all__ = [
20-
"get_grasshopper_managedplugin_path",
21-
"get_grasshopper_library_path",
22-
"get_grasshopper_userobjects_path",
23-
"fetch_ghio_lib",
24-
"create_id",
25-
"warning",
26-
"error",
27-
"remark",
28-
"message",
29-
]
3019
__all_plugins__ = [
3120
"compas_ghpython.install",
3221
"compas_ghpython.uninstall",

src/compas_ghpython/scene/__init__.py

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
This package provides scene object plugins for visualising COMPAS objects in Grasshopper.
33
When working in GH Python components, :class:`compas.scene.SceneObject` will automatically use the corresponding GHPython scene object for each COMPAS object type.
44
"""
5-
6-
from __future__ import absolute_import
5+
# ruff: noqa: F401
76

87
from compas.plugins import plugin
98
from compas.scene import register
@@ -88,29 +87,3 @@ def register_scene_objects():
8887
register(Brep, BrepObject, context="Grasshopper")
8988

9089
print("GH SceneObjects registered.")
91-
92-
93-
__all__ = [
94-
"GHSceneObject",
95-
"BoxObject",
96-
"CapsuleObject",
97-
"CircleObject",
98-
"ConeObject",
99-
"CurveObject",
100-
"CylinderObject",
101-
"EllipseObject",
102-
"FrameObject",
103-
"LineObject",
104-
"MeshObject",
105-
"GraphObject",
106-
"PlaneObject",
107-
"PointObject",
108-
"PolygonObject",
109-
"PolyhedronObject",
110-
"PolylineObject",
111-
"SphereObject",
112-
"SurfaceObject",
113-
"TorusObject",
114-
"VectorObject",
115-
"VolMeshObject",
116-
]

src/compas_rhino/__init__.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import
2-
31
import io
42
import os
53

@@ -25,20 +23,6 @@
2523

2624
unload_modules = DevTools.unload_modules
2725

28-
__all__ = [
29-
"PURGE_ON_DELETE",
30-
"INSTALLABLE_PACKAGES",
31-
"SUPPORTED_VERSIONS",
32-
"DEFAULT_VERSION",
33-
"INSTALLED_VERSION",
34-
"IRONPYTHON_PLUGIN_GUID",
35-
"GRASSHOPPER_PLUGIN_GUID",
36-
"RHINOCYCLES_PLUGIN_GUID",
37-
"clear",
38-
"redraw",
39-
"unload_modules",
40-
]
41-
4226
__all_plugins__ = [
4327
"compas_rhino.geometry.booleans",
4428
"compas_rhino.geometry.trimesh_curvature",
Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
from __future__ import absolute_import
1+
# ruff: noqa: F401
22

33
from .base import BaseConduit
44

55
from .faces import FacesConduit
66
from .labels import LabelsConduit
77
from .lines import LinesConduit
88
from .points import PointsConduit
9-
10-
__all__ = [
11-
"BaseConduit",
12-
"FacesConduit",
13-
"LabelsConduit",
14-
"LinesConduit",
15-
"PointsConduit",
16-
]

src/compas_rhino/conduits/base.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import absolute_import
2-
from __future__ import division
3-
from __future__ import print_function
4-
51
import time
62
from contextlib import contextmanager
73

src/compas_rhino/conduits/faces.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import absolute_import
2-
from __future__ import division
3-
from __future__ import print_function
4-
51
import Rhino # type: ignore
62
import System # type: ignore
73

src/compas_rhino/conduits/labels.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import absolute_import
2-
from __future__ import division
3-
from __future__ import print_function
4-
51
import Rhino # type: ignore
62
import System # type: ignore
73

src/compas_rhino/conduits/lines.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import absolute_import
2-
from __future__ import division
3-
from __future__ import print_function
4-
51
import Rhino # type: ignore
62
import System # type: ignore
73

src/compas_rhino/conduits/points.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import absolute_import
2-
from __future__ import division
3-
from __future__ import print_function
4-
51
import Rhino # type: ignore
62
import System # type: ignore
73

0 commit comments

Comments
 (0)