2022-06-14 15:02:54 +02:00
|
|
|
/********************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* This file is part of IfcOpenShell. *
|
|
|
|
|
* *
|
|
|
|
|
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the Lesser GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation, either version 3.0 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 *
|
|
|
|
|
* Lesser GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the Lesser GNU General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
* *
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
|
|
// uncomment if you'd like negative or close to zero extrusion depths to succeed
|
|
|
|
|
// #define PERMISSIVE_EXTRUSION
|
|
|
|
|
|
2023-03-21 20:15:01 +01:00
|
|
|
#include "mapping.h"
|
|
|
|
|
#define mapping POSTFIX_SCHEMA(mapping)
|
|
|
|
|
using namespace ifcopenshell::geometry;
|
2022-06-14 15:02:54 +02:00
|
|
|
|
2023-07-27 16:42:06 +08:00
|
|
|
taxonomy::ptr mapping::map_impl(const IfcSchema::IfcExtrudedAreaSolid* inst) {
|
2023-03-21 20:15:01 +01:00
|
|
|
const double height = inst->Depth() * length_unit_;
|
2023-11-15 10:32:20 +01:00
|
|
|
if (height < settings_.get<settings::Precision>().get()) {
|
2026-06-10 09:14:22 +02:00
|
|
|
Logger::Message(Logger::LOG_ERROR, "GEO", 259, "Non-positive extrusion height encountered for:", inst);
|
2022-06-14 15:02:54 +02:00
|
|
|
#ifndef PERMISSIVE_EXTRUSION
|
2023-03-21 20:15:01 +01:00
|
|
|
return nullptr;
|
2022-06-14 15:02:54 +02:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-27 16:42:06 +08:00
|
|
|
taxonomy::matrix4::ptr matrix;
|
2022-06-14 15:02:54 +02:00
|
|
|
bool has_position = true;
|
|
|
|
|
#ifdef SCHEMA_IfcSweptAreaSolid_Position_IS_OPTIONAL
|
2023-03-21 20:15:01 +01:00
|
|
|
has_position = inst->Position() != nullptr;
|
2022-06-14 15:02:54 +02:00
|
|
|
#endif
|
|
|
|
|
if (has_position) {
|
2023-07-27 16:42:06 +08:00
|
|
|
matrix = taxonomy::cast<taxonomy::matrix4>(map(inst->Position()));
|
2022-06-14 15:02:54 +02:00
|
|
|
}
|
|
|
|
|
|
2022-08-22 12:24:04 +02:00
|
|
|
#ifdef PERMISSIVE_EXTRUSION
|
|
|
|
|
if (abs(height) < getValue(GV_PRECISION)) {
|
2023-03-21 20:15:01 +01:00
|
|
|
face->matrix = matrix;
|
|
|
|
|
return face;
|
2022-08-22 12:24:04 +02:00
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-07-21 11:52:48 +02:00
|
|
|
auto basis = map(inst->SweptArea());
|
|
|
|
|
if (auto bases = taxonomy::dcast<taxonomy::collection>(basis)) {
|
|
|
|
|
// @todo this requires a unified approach for all sweeps
|
|
|
|
|
auto c = taxonomy::make<taxonomy::collection>();
|
|
|
|
|
for (auto& f : bases->children) {
|
|
|
|
|
c->children.push_back(
|
|
|
|
|
taxonomy::make<taxonomy::extrusion>(
|
|
|
|
|
matrix,
|
|
|
|
|
taxonomy::cast<taxonomy::face>(f),
|
|
|
|
|
taxonomy::cast<taxonomy::direction3>(map(inst->ExtrudedDirection())),
|
|
|
|
|
height
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
c->children.back()->instance = inst;
|
|
|
|
|
}
|
|
|
|
|
return c;
|
|
|
|
|
} else {
|
|
|
|
|
return taxonomy::make<taxonomy::extrusion>(
|
|
|
|
|
matrix,
|
|
|
|
|
taxonomy::cast<taxonomy::face>(basis),
|
|
|
|
|
taxonomy::cast<taxonomy::direction3>(map(inst->ExtrudedDirection())),
|
|
|
|
|
height
|
|
|
|
|
);
|
|
|
|
|
}
|
2022-06-14 15:02:54 +02:00
|
|
|
}
|