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
+11 -9
View File
@@ -8,26 +8,28 @@ from sverchok.data_structure import updateNode
class SvIfcByQuery(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
bl_idname = 'SvIfcByQuery'
bl_label = 'IFC By Query'
file: StringProperty(name='file', update=updateNode)
query: StringProperty(name='query', update=updateNode)
bl_idname = "SvIfcByQuery"
bl_label = "IFC By Query"
file: StringProperty(name="file", update=updateNode)
query: StringProperty(name="query", update=updateNode)
def sv_init(self, context):
self.inputs.new('SvStringsSocket', 'file').prop_name = 'file'
self.inputs.new('SvStringsSocket', 'query').prop_name = 'query'
self.outputs.new('SvStringsSocket', 'entity')
self.inputs.new("SvStringsSocket", "file").prop_name = "file"
self.inputs.new("SvStringsSocket", "query").prop_name = "query"
self.outputs.new("SvStringsSocket", "entity")
def process(self):
self.sv_input_names = ['file', 'query']
self.sv_input_names = ["file", "query"]
super().process()
def process_ifc(self, file, query):
selector = ifcopenshell.util.selector.Selector()
self.outputs['entity'].sv_set([selector.parse(file, query)])
self.outputs["entity"].sv_set([selector.parse(file, query)])
def register():
bpy.utils.register_class(SvIfcByQuery)
def unregister():
bpy.utils.unregister_class(SvIfcByQuery)