Skip to content

Commit 164ef82

Browse files
fix: metadata in CropCloud and IntersectCloud
1 parent 5308e44 commit 164ef82

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

src/gh/components/DF_cloud_intersect/metadata.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "DFSubtractCloud",
3-
"nickname": "Subtract",
2+
"name": "DFIntersectCloud",
3+
"nickname": "Intersect",
44
"category": "diffCheck",
55
"subcategory": "Cloud",
6-
"description": "Subtracts points from a point cloud based on a distance threshold.",
6+
"description": "Intersects points from two point clouds based on a distance threshold.",
77
"exposure": 4,
88
"instanceGuid": "b1a87021-dc4d-4844-86e0-8dcf55965ac6",
99
"ghpython": {
@@ -14,8 +14,8 @@
1414
"iconDisplay": 2,
1515
"inputParameters": [
1616
{
17-
"name": "i_cloud_intersect_from",
18-
"nickname": "i_cloud_intersect_from",
17+
"name": "i_cloud_A",
18+
"nickname": "i_cloud_A",
1919
"description": "The point cloud to intersect from.",
2020
"optional": false,
2121
"allowTreeAccess": true,
@@ -26,8 +26,8 @@
2626
"typeHintID": "pointcloud"
2727
},
2828
{
29-
"name": "i_cloud_intersect_with",
30-
"nickname": "i_cloud_intersect_with",
29+
"name": "i_cloud_B",
30+
"nickname": "i_cloud_B",
3131
"description": "The point cloud to intersect with.",
3232
"optional": false,
3333
"allowTreeAccess": true,
@@ -40,7 +40,7 @@
4040
{
4141
"name": "i_distance_threshold",
4242
"nickname": "i_distance_threshold",
43-
"description": "The distance threshold to consider a point as too close.",
43+
"description": "The distance threshold to consider a point as close enough.",
4444
"optional": true,
4545
"allowTreeAccess": true,
4646
"showTypeHints": true,

src/gh/components/DF_crop_cloud/metadata.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,17 @@
4040
],
4141
"outputParameters": [
4242
{
43-
"name": "o_cloud",
44-
"nickname": "o_cloud",
45-
"description": "The downsampled cloud.",
43+
"name": "o_cloud_inside",
44+
"nickname": "o_cloud_inside",
45+
"description": "the points inside the cropping object.",
46+
"optional": false,
47+
"sourceCount": 0,
48+
"graft": false
49+
},
50+
{
51+
"name": "o_cloud_outside",
52+
"nickname": "o_cloud_outside",
53+
"description": "the points outside the cropping object.",
4654
"optional": false,
4755
"sourceCount": 0,
4856
"graft": false

0 commit comments

Comments
 (0)