black ifcsverchok

This commit is contained in:
htlcnn
2020-11-01 19:24:01 +07:00
committed by Dion Moult
parent 4a6ec11f6f
commit 2c9d6a47f4
18 changed files with 245 additions and 203 deletions
+9 -7
View File
@@ -7,24 +7,26 @@ from sverchok.data_structure import updateNode
class SvIfcWriteFile(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
bl_idname = 'SvIfcWriteFile'
bl_label = 'IFC Write File'
file: StringProperty(name='file', update=updateNode)
path: StringProperty(name='path', update=updateNode)
bl_idname = "SvIfcWriteFile"
bl_label = "IFC Write File"
file: StringProperty(name="file", update=updateNode)
path: StringProperty(name="path", update=updateNode)
def sv_init(self, context):
self.inputs.new('SvStringsSocket', 'file').prop_name = 'file'
self.inputs.new('SvStringsSocket', 'path').prop_name = 'path'
self.inputs.new("SvStringsSocket", "file").prop_name = "file"
self.inputs.new("SvStringsSocket", "path").prop_name = "path"
def process(self):
self.sv_input_names = ['file', 'path']
self.sv_input_names = ["file", "path"]
super().process()
def process_ifc(self, file, path):
file.write(path)
def register():
bpy.utils.register_class(SvIfcWriteFile)
def unregister():
bpy.utils.unregister_class(SvIfcWriteFile)