# IfcOpenShell - IFC toolkit and geometry engine # Copyright (C) 2021 Dion Moult # # This file is part of IfcOpenShell. # # IfcOpenShell is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # IfcOpenShell 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 Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with IfcOpenShell. If not, see . import ifcopenshell.api.owner import ifcopenshell.api.geometry import ifcopenshell.util.element from typing import Any def assign_representation( file: ifcopenshell.file, product: ifcopenshell.entity_instance, representation: ifcopenshell.entity_instance ) -> None: usecase = Usecase() usecase.file = file usecase.settings = {"product": product, "representation": representation} return usecase.execute() class Usecase: file: ifcopenshell.file settings: dict[str, Any] def execute(self) -> None: if self.settings["product"].is_a("IfcProduct"): product_type = ifcopenshell.util.element.get_type(self.settings["product"]) if ( product_type and product_type.RepresentationMaps and self.settings["representation"].RepresentationType != "MappedRepresentation" ): self.settings["product"] = product_type if self.settings["product"].is_a("IfcProduct"): self.assign_product_representation(self.settings["product"], self.settings["representation"]) elif self.settings["product"].is_a("IfcTypeProduct"): if self.settings["product"].RepresentationMaps: maps = list(self.settings["product"].RepresentationMaps) else: maps = [] self.zero = self.file.createIfcCartesianPoint((0.0, 0.0, 0.0)) self.x_axis = self.file.createIfcDirection((1.0, 0.0, 0.0)) self.z_axis = self.file.createIfcDirection((0.0, 0.0, 1.0)) maps.append( self.file.create_entity( "IfcRepresentationMap", **{ "MappingOrigin": self.file.createIfcAxis2Placement3D(self.zero, self.z_axis, self.x_axis), "MappedRepresentation": self.settings["representation"], } ) ) self.settings["product"].RepresentationMaps = maps if self.file.schema == "IFC2X3": types = self.settings["product"].ObjectTypeOf else: types = self.settings["product"].Types if types: for element in types[0].RelatedObjects: mapped_representation = ifcopenshell.api.geometry.map_representation( self.file, representation=self.settings["representation"] ) self.assign_product_representation(element, mapped_representation) ifcopenshell.api.owner.update_owner_history(self.file, **{"element": self.settings["product"]}) def assign_product_representation( self, product: ifcopenshell.entity_instance, representation: ifcopenshell.entity_instance ) -> None: definition = product.Representation if not definition: definition = self.file.createIfcProductDefinitionShape() product.Representation = definition representations = list(definition.Representations) if definition.Representations else [] representations.append(representation) definition.Representations = representations