Skip to content

Commit bc42fe2

Browse files
fix: rename CloudCrop to CloudSplit
1 parent 3eebaa5 commit bc42fe2

File tree

9 files changed

+9
-166
lines changed

9 files changed

+9
-166
lines changed

src/gh/components/DF_cloud_merge/code.py

Lines changed: 0 additions & 27 deletions
This file was deleted.
-14.9 KB
Binary file not shown.

src/gh/components/DF_cloud_merge/metadata.json

Lines changed: 0 additions & 41 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
TOL = Rhino.RhinoDoc.ActiveDoc.ModelAbsoluteTolerance
1111

12-
class DFCloudCrop(component):
12+
class DFCloudSplit(component):
1313
def __init__(self):
14-
super(DFCloudCrop, self).__init__()
14+
super(DFCloudSplit, self).__init__()
1515

1616
def RunScript(self,
1717
i_cloud: Rhino.Geometry.PointCloud,

src/gh/components/DF_crop_cloud/metadata.json renamed to src/gh/components/DF_cloud_split/metadata.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "DFCropCloud",
3-
"nickname": "Crop",
2+
"name": "DFCloudSplit",
3+
"nickname": "Split",
44
"category": "diffCheck",
55
"subcategory": "Cloud",
6-
"description": "Crops a point cloud by giving a boundary volume.",
6+
"description": "Splits a point cloud using a boundary volume.",
77
"exposure": 4,
88
"instanceGuid": "f0461287-b1aa-47ec-87c4-0f03924cea24",
99
"ghpython": {
@@ -16,7 +16,7 @@
1616
{
1717
"name": "i_cloud",
1818
"nickname": "i_cloud",
19-
"description": "The point cloud to crop.",
19+
"description": "The point cloud to split.",
2020
"optional": false,
2121
"allowTreeAccess": true,
2222
"showTypeHints": true,
@@ -28,7 +28,7 @@
2828
{
2929
"name": "i_boundary",
3030
"nickname": "i_boundary",
31-
"description": "The brep boundary to crop the point cloud with. If a box is provided, computation will be faster. If a generic brep is provided, it will be used but may be slower.",
31+
"description": "The brep boundary to split the point cloud with. If a box is provided, computation will be faster. If a generic brep is provided, it will be used but may be slower.",
3232
"optional": false,
3333
"allowTreeAccess": true,
3434
"showTypeHints": true,
@@ -42,15 +42,15 @@
4242
{
4343
"name": "o_cloud_inside",
4444
"nickname": "o_cloud_inside",
45-
"description": "the points inside the cropping object.",
45+
"description": "the points inside the splitting region.",
4646
"optional": false,
4747
"sourceCount": 0,
4848
"graft": false
4949
},
5050
{
5151
"name": "o_cloud_outside",
5252
"nickname": "o_cloud_outside",
53-
"description": "the points outside the cropping object.",
53+
"description": "the points outside the splitting region.",
5454
"optional": false,
5555
"sourceCount": 0,
5656
"graft": false

src/gh/components/DF_cloud_subtractor/code.py

Lines changed: 0 additions & 25 deletions
This file was deleted.
-12.1 KB
Binary file not shown.

src/gh/components/DF_cloud_subtractor/metadata.json

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)