Skip to content

Commit 70fe6e9

Browse files
committed
add vertex attrib
1 parent ca7c514 commit 70fe6e9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

example/CallPython_Source6.hipnc

107 KB
Binary file not shown.

example/gss_call_python_example.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ def main(points, vertices, prims, detail):
1919
'P.Y': 0.0,
2020
'P.Z': 0.0}, ignore_index=True)
2121

22-
# add atribute
22+
# add point atribute
2323
points['TestAttrib'] = 'abc'
2424

25+
# add vertex atribute
26+
vertices['NV'] = 'testing...'
27+
2528
return (points, vertices, prims, detail)
2629

2730

0 commit comments

Comments
 (0)