Skip to content

Commit 4809f30

Browse files
feat: add empty component for axis calculation. code must be written
1 parent f43e197 commit 4809f30

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

src/gh/components/DF_main_pc_axes/code.py

Whitespace-only changes.
1.13 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "DFMainAxes",
3+
"nickname": "MainAxes",
4+
"category": "diffCheck",
5+
"subcategory": "PointCloud",
6+
"description": "This compoment calculates the main axes of a point cloud. This is initially ment for pose estimation.",
7+
"exposure": 4,
8+
"instanceGuid": "22b0c6fc-bc16-4ff5-b789-e99776277f65",
9+
"ghpython": {
10+
"hideOutput": true,
11+
"hideInput": true,
12+
"isAdvancedMode": true,
13+
"marshalOutGuids": true,
14+
"iconDisplay": 2,
15+
"inputParameters": [
16+
{
17+
"name": "i_cloud",
18+
"nickname": "i_cloud",
19+
"description": "cloud whose main axes are to be calculated",
20+
"optional": true,
21+
"allowTreeAccess": true,
22+
"showTypeHints": true,
23+
"scriptParamAccess": "item",
24+
"wireDisplay": "default",
25+
"sourceCount": 0,
26+
"typeHintID": "pointcloud"
27+
}
28+
],
29+
"outputParameters": [
30+
{
31+
"name": "o_vectors",
32+
"nickname": "vectors",
33+
"description": "The resulting vectors of the axis calculation.",
34+
"optional": false,
35+
"sourceCount": 0,
36+
"graft": false
37+
}
38+
]
39+
}
40+
}

0 commit comments

Comments
 (0)