mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 02:07:36 +00:00
Fix #4307
This commit is contained in:
@@ -1,20 +1,20 @@
|
|||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* *
|
* *
|
||||||
* This file is part of IfcOpenShell. *
|
* This file is part of IfcOpenShell. *
|
||||||
* *
|
* *
|
||||||
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
* 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 *
|
* 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 *
|
* the Free Software Foundation, either version 3.0 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
* *
|
* *
|
||||||
* IfcOpenShell is distributed in the hope that it will be useful, *
|
* IfcOpenShell is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* Lesser GNU General Public License for more details. *
|
* Lesser GNU General Public License for more details. *
|
||||||
* *
|
* *
|
||||||
* You should have received a copy of the Lesser GNU General Public License *
|
* 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/>. *
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||||
* *
|
* *
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
#include "mapping.h"
|
#include "mapping.h"
|
||||||
@@ -28,7 +28,23 @@ taxonomy::ptr mapping::map_impl(const IfcSchema::IfcDerivedProfileDef* inst) {
|
|||||||
}
|
}
|
||||||
// @todo we mutate it so we need to clone otherwise we alter the cached item.
|
// @todo we mutate it so we need to clone otherwise we alter the cached item.
|
||||||
it = taxonomy::item::ptr(it->clone_());
|
it = taxonomy::item::ptr(it->clone_());
|
||||||
taxonomy::matrix4::ptr m = taxonomy::cast<taxonomy::matrix4>(map(inst->Operator()));
|
|
||||||
|
taxonomy::matrix4::ptr m;
|
||||||
|
bool is_mirror = false;
|
||||||
|
#ifdef SCHEMA_HAS_IfcMirroredProfileDef
|
||||||
|
if (inst->as<IfcSchema::IfcMirroredProfileDef>()) {
|
||||||
|
m = taxonomy::make<taxonomy::matrix4>();
|
||||||
|
// @todo test
|
||||||
|
m->components().col(0) *= -1.;
|
||||||
|
is_mirror = true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
if (!is_mirror) {
|
||||||
|
m = taxonomy::cast<taxonomy::matrix4>(map(inst->Operator()));
|
||||||
|
if (!m) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (!taxonomy::cast<taxonomy::geom_item>(it)->matrix) {
|
if (!taxonomy::cast<taxonomy::geom_item>(it)->matrix) {
|
||||||
// @todo should this not be initialized by default? matrix4 already has a 'lazy identity' mechanism.
|
// @todo should this not be initialized by default? matrix4 already has a 'lazy identity' mechanism.
|
||||||
taxonomy::cast<taxonomy::geom_item>(it)->matrix = taxonomy::make<taxonomy::matrix4>();
|
taxonomy::cast<taxonomy::geom_item>(it)->matrix = taxonomy::make<taxonomy::matrix4>();
|
||||||
|
|||||||
Reference in New Issue
Block a user