Skip to content

Commit 4e82e62

Browse files
committed
removing horizontal lines
1 parent 275dc7f commit 4e82e62

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/compas_rhino/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@
3737
INSTALLABLE_PACKAGES = ['compas', 'compas_rhino', 'compas_ghpython']
3838

3939

40+
def clear():
41+
guids = get_objects() # noqa: F405
42+
delete_objects(guids, purge=True) # noqa: F405
43+
44+
4045
def _check_rhino_version(version):
4146
supported_versions = ['5.0', '6.0', '7.0']
4247

src/compas_rhino/conduits/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def redraw(k, args):
3737
kmax=100,
3838
callback=redraw)
3939
40-
----
4140
4241
BaseConduit
4342
===========

src/compas_rhino/geometry/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
guid = compas_rhino.select_mesh()
1818
mesh = RhinoMesh.from_guid(guid).to_compas()
1919
20-
----
2120
2221
BaseRhinoGeometry
2322
=================

src/compas_rhino/objects/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
if vertices and meshobject.modify_vertices(vertices):
2424
meshobject.draw()
2525
26-
----
2726
2827
NetworkObject
2928
=============

0 commit comments

Comments
 (0)