mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-17 14:02:27 +00:00
Experimental create entity node created
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
import bpy
|
||||
import ifcopenshell
|
||||
import ifcsverchok.helper
|
||||
from bpy.props import StringProperty
|
||||
from sverchok.node_tree import SverchCustomTreeNode
|
||||
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)
|
||||
|
||||
def sv_init(self, context):
|
||||
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']
|
||||
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)
|
||||
Reference in New Issue
Block a user