mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-29 16:22:53 +00:00
68 lines
2.5 KiB
Python
68 lines
2.5 KiB
Python
# BlenderBIM Add-on - OpenBIM Blender Add-on
|
|
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of BlenderBIM Add-on.
|
|
#
|
|
# BlenderBIM Add-on is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# BlenderBIM Add-on is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import bpy
|
|
from . import ui, prop, operator, workspace
|
|
|
|
classes = (
|
|
operator.AssignContainer,
|
|
operator.ChangeSpatialLevel,
|
|
operator.CopyToContainer,
|
|
operator.DereferenceStructure,
|
|
operator.DisableEditingContainer,
|
|
operator.EnableEditingContainer,
|
|
operator.ReferenceStructure,
|
|
operator.RemoveContainer,
|
|
operator.SelectContainer,
|
|
operator.SelectSimilarContainer,
|
|
operator.SelectProduct,
|
|
operator.LoadContainerManager,
|
|
operator.EditContainerAttributes,
|
|
operator.AddBuildingStorey,
|
|
operator.ContractContainer,
|
|
operator.ExpandContainer,
|
|
operator.DeleteContainer,
|
|
operator.SelectDecomposedElements,
|
|
prop.SpatialElement,
|
|
prop.BIMSpatialProperties,
|
|
prop.BIMObjectSpatialProperties,
|
|
prop.BIMContainer,
|
|
prop.BIMSpatialManagerProperties,
|
|
ui.BIM_PT_spatial,
|
|
ui.BIM_UL_containers,
|
|
ui.BIM_UL_containers_manager,
|
|
ui.BIM_PT_SpatialManager,
|
|
workspace.Hotkey,
|
|
)
|
|
|
|
|
|
def register():
|
|
if not bpy.app.background:
|
|
bpy.utils.register_tool(workspace.SpatialTool, after={"bim.annotation_tool"}, separator=False, group=False)
|
|
bpy.types.Scene.BIMSpatialProperties = bpy.props.PointerProperty(type=prop.BIMSpatialProperties)
|
|
bpy.types.Object.BIMObjectSpatialProperties = bpy.props.PointerProperty(type=prop.BIMObjectSpatialProperties)
|
|
bpy.types.Scene.BIMSpatialManagerProperties = bpy.props.PointerProperty(type=prop.BIMSpatialManagerProperties)
|
|
|
|
|
|
def unregister():
|
|
if not bpy.app.background:
|
|
bpy.utils.unregister_tool(workspace.SpatialTool)
|
|
del bpy.types.Scene.BIMSpatialProperties
|
|
del bpy.types.Object.BIMObjectSpatialProperties
|
|
del bpy.types.Scene.BIMSpatialManagerProperties
|