import hou import sys def main(output_hip): geo_node = hou.node('/obj').createNode('geo') nurb_surface = hou.Geometry().createNURBSSurface(10,10) hou.hipFile.save(file_name=output_hip) if __name__ == "__main__": if len(sys.argv) == 2: main(output_hip=sys.argv[1])
How do I associate the newly create nurb_surface with the ‘geo’ node ? My created hip file only has ‘geo1’ but not the NURBS surface geometry.
Cheers