2022-01-19 12:18:33 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
|
|
|
#
|
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2021-11-30 03:29:22 +01:00
|
|
|
import ifcopenshell.util.unit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Usecase:
|
|
|
|
|
def __init__(self, file, **kwargs):
|
|
|
|
|
"""location, axis and ref_direction defines the plane"""
|
|
|
|
|
self.file = file
|
|
|
|
|
self.rel_space_boundary = None
|
|
|
|
|
self.outer_boundary = None
|
|
|
|
|
self.inner_boundaries = ()
|
|
|
|
|
self.location = None
|
|
|
|
|
self.axis = None
|
|
|
|
|
self.ref_direction = None
|
|
|
|
|
self.unit_scale = None
|
|
|
|
|
self.ifc_vertices = []
|
|
|
|
|
for key, value in kwargs.items():
|
|
|
|
|
setattr(self, key, value)
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
if self.unit_scale is None:
|
|
|
|
|
self.unit_scale = ifcopenshell.util.unit.calculate_unit_scale(self.file)
|
|
|
|
|
outer_boundary = self.create_polyline(self.outer_boundary)
|
|
|
|
|
inner_boundaries = tuple(self.create_polyline(boundary) for boundary in self.inner_boundaries)
|
|
|
|
|
plane = self.create_plane(self.location, self.axis, self.ref_direction)
|
|
|
|
|
curve_bounded_plane = self.file.createIfcCurveBoundedPlane(plane, outer_boundary, inner_boundaries)
|
|
|
|
|
connection_geometry = self.file.createIfcConnectionSurfaceGeometry(curve_bounded_plane)
|
|
|
|
|
self.rel_space_boundary.ConnectionGeometry = connection_geometry
|
|
|
|
|
|
|
|
|
|
def create_point(self, point):
|
|
|
|
|
return self.file.createIfcCartesianPoint(point / self.unit_scale)
|
|
|
|
|
|
|
|
|
|
def close_polyline(self, points):
|
|
|
|
|
return points + (points[0],)
|
|
|
|
|
|
|
|
|
|
def create_polyline(self, points):
|
|
|
|
|
if points[0] == points[-1]:
|
|
|
|
|
points = points[0 : len(points) - 1]
|
|
|
|
|
return self.file.createIfcPolyline(self.close_polyline(tuple(self.create_point(point) for point in points)))
|
|
|
|
|
|
|
|
|
|
def create_plane(self, location, axis, ref_direction):
|
|
|
|
|
return self.file.createIfcPlane(
|
|
|
|
|
self.file.createIfcAxis2Placement3D(
|
|
|
|
|
self.create_point(location),
|
|
|
|
|
self.file.createIfcDirection(axis),
|
|
|
|
|
self.file.createIfcDirection(ref_direction),
|
|
|
|
|
)
|
|
|
|
|
)
|