""" Polyhedron module SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca Contributors Pilar Monsalvete pilar_monsalvete@yahoo.es """ import numpy as np from trimesh import Trimesh from helpers.geometry_helper import GeometryHelper from helpers.configuration_helper import ConfigurationHelper from city_model_structure.attributes.polygon import Polygon class Polyhedron: """ Polyhedron class """ def __init__(self, polygons): self._polygons = polygons self._polyhedron = None self._triangulated_polyhedron = None self._volume = None self._faces = None self._vertices = None self._trimesh = None self._centroid = None self._max_z = None self._max_y = None self._max_x = None self._min_z = None self._min_y = None self._min_x = None self._geometry = GeometryHelper() def _position_of(self, point, face): vertices = self.vertices for i in range(len(vertices)): # ensure not duplicated vertex if i not in face and GeometryHelper.distance_between_points(vertices[i], point) == 0: return i return -1 @property def vertices(self) -> np.ndarray: """ Polyhedron vertices :return: np.ndarray(int) """ if self._vertices is None: vertices, self._vertices = [], [] _ = [vertices.extend(s.points) for s in self._polygons] for vertex_1 in vertices: found = False for vertex_2 in self._vertices: found = False if GeometryHelper.distance_between_points(vertex_1, vertex_2) == 0: found = True break if not found: self._vertices.append(vertex_1) self._vertices = np.asarray(self._vertices) return self._vertices @property def faces(self) -> [[int]]: """ Polyhedron triangular faces :return: [[int]] """ if self._faces is None: self._faces = [] for polygon in self._polygons: face = [] points = polygon.points if len(points) != 3: sub_polygons = polygon.triangulate() # todo: I modified this! To be checked @Guille if len(sub_polygons) >= 1: for sub_polygon in sub_polygons: face = [] points = sub_polygon.points for point in points: face.append(self._position_of(point, face)) self._faces.append(face) else: for point in points: face.append(self._position_of(point, face)) self._faces.append(face) return self._faces @property def trimesh(self) -> Trimesh: if self._trimesh is None: self._trimesh = Trimesh(vertices=self.vertices, faces=self.faces) return self._trimesh @property def volume(self): """ Polyhedron volume in cubic meters :return: float """ if self._volume is None: if not self.trimesh.is_volume: self._volume = np.inf else: self._volume = self.trimesh.volume return self._volume @property def max_z(self): """ Polyhedron maximal z value :return: float """ if self._max_z is None: self._max_z = ConfigurationHelper().min_coordinate for polygon in self._polygons: for point in polygon.points: self._max_z = max(self._max_z, point[2]) return self._max_z @property def max_y(self): """ Polyhedron maximal y value :return: float """ if self._max_y is None: self._max_y = ConfigurationHelper().min_coordinate for polygon in self._polygons: for point in polygon.points: if self._max_y < point[1]: self._max_y = point[1] return self._max_y @property def max_x(self): """ Polyhedron maximal x value :return: float """ if self._max_x is None: self._max_x = ConfigurationHelper().min_coordinate for polygon in self._polygons: for point in polygon.points: self._max_x = max(self._max_x, point[0]) return self._max_x @property def min_z(self): """ Polyhedron minimal z value :return: float """ if self._min_z is None: self._min_z = self.max_z for polygon in self._polygons: for point in polygon.points: if self._min_z > point[2]: self._min_z = point[2] return self._min_z @property def min_y(self): """ Polyhedron minimal y value :return: float """ if self._min_y is None: self._min_y = self.max_y for polygon in self._polygons: for point in polygon.points: if self._min_y > point[1]: self._min_y = point[1] return self._min_y @property def min_x(self): """ Polyhedron minimal x value :return: float """ if self._min_x is None: self._min_x = self.max_x for polygon in self._polygons: for point in polygon.points: if self._min_x > point[0]: self._min_x = point[0] return self._min_x @property def centroid(self): """ Polyhedron centroid :return: [x,y,z] """ if self._centroid is None: self._centroid = self.trimesh.centroid return self._centroid def stl_export(self, full_path): """ Export the polyhedron to stl given file :param full_path: str :return: None """ self.trimesh.export(full_path, 'stl_ascii') def obj_export(self, full_path): """ Export the polyhedron to obj given file :param full_path: str :return: None """ self.trimesh.export(full_path, 'obj') def show(self): self.trimesh.show()