Files
IfcOpenShell/src/blenderbim/blenderbim/bim/module/gis/__init__.py
T
Laurens Oostwegel ff6db5f24d Integrate ifccityjson in BlenderBIM (#1859)
* 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
2021-11-09 08:51:30 +11:00

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