mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 22:50:21 +00:00
ff6db5f24d
* ifccityjson-BB integration: include CJIO in makefile * Add ifccityjson to BlenderBIM * Make ifccityjson work like a package * Use pip while installing CJIO dependency for ifccityjson * revert removal of brick module * Changes from pull request review * Use ifccityjson as CLI and as package for BlenderBIM
17 lines
410 B
Python
17 lines
410 B
Python
import bpy
|
|
from . import prop
|
|
from . import operator
|
|
from . import ui
|
|
|
|
classes = (
|
|
prop.BIMCityJsonProperties,
|
|
operator.BIM_OT_cityjson2ifc,
|
|
operator.BIM_OT_find_cityjson_lod,
|
|
ui.BIM_PT_cityjson_converter,
|
|
)
|
|
|
|
def register():
|
|
bpy.types.Scene.ifccityjson_properties = bpy.props.PointerProperty(type=prop.BIMCityJsonProperties)
|
|
|
|
def unregister():
|
|
del bpy.types.Scene.ifccityjson_properties |