2017-01-16 14:04:31 +01:00
|
|
|
#include "../../../ifcparse/IfcParse.h"
|
|
|
|
|
|
|
|
|
|
#include "CgalKernel.h"
|
|
|
|
|
#include "CgalConversionResult.h"
|
|
|
|
|
|
|
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcRepresentation* l, ConversionResults& shapes) {
|
|
|
|
|
IfcSchema::IfcRepresentationItem::list::ptr items = l->Items();
|
|
|
|
|
bool part_succes = false;
|
|
|
|
|
if (items->size()) {
|
|
|
|
|
for (IfcSchema::IfcRepresentationItem::list::it it = items->begin(); it != items->end(); ++it) {
|
|
|
|
|
IfcSchema::IfcRepresentationItem* representation_item = *it;
|
|
|
|
|
if (shape_type(representation_item) == ST_SHAPELIST) {
|
|
|
|
|
part_succes |= convert_shapes(*it, shapes);
|
|
|
|
|
} else {
|
|
|
|
|
cgal_shape_t s;
|
|
|
|
|
if (convert_shape(representation_item, s)) {
|
|
|
|
|
shapes.push_back(ConversionResult(new CgalShape(s), get_style(representation_item)));
|
|
|
|
|
part_succes |= true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return part_succes;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 18:53:00 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcCartesianPoint* l, cgal_point_t& point) {
|
2017-01-31 19:03:15 -06:00
|
|
|
std::vector<double> xyz = l->Coordinates();
|
2017-03-16 18:44:25 -06:00
|
|
|
point = Kernel::Point_3(xyz.size() ? (xyz[0]*getValue(GV_LENGTH_UNIT)) : 0.0f,
|
|
|
|
|
xyz.size() > 1 ? (xyz[1]*getValue(GV_LENGTH_UNIT)) : 0.0f,
|
|
|
|
|
xyz.size() > 2 ? (xyz[2]*getValue(GV_LENGTH_UNIT)) : 0.0f);
|
|
|
|
|
// std::cout << "Converted Point(" << point << ")" << std::endl;
|
|
|
|
|
return true;
|
2017-01-31 18:53:00 -06:00
|
|
|
}
|
2017-02-07 19:50:51 -06:00
|
|
|
|
|
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcDirection* l, cgal_direction_t& dir) {
|
|
|
|
|
// IN_CACHE(IfcDirection,l,cgal_direction_t,dir)
|
|
|
|
|
std::vector<double> xyz = l->DirectionRatios();
|
2017-02-07 20:37:47 -06:00
|
|
|
dir = Kernel::Vector_3(xyz.size() ? xyz[0] : 0.0f,
|
|
|
|
|
xyz.size() > 1 ? xyz[1] : 0.0f,
|
|
|
|
|
xyz.size() > 2 ? xyz[2] : 0.0f);
|
2017-02-07 19:50:51 -06:00
|
|
|
// CACHE(IfcDirection,l,dir)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-13 19:08:23 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcVector* l, cgal_vector_t& v) {
|
|
|
|
|
// IN_CACHE(IfcVector,l,cgal_vector_t,v)
|
|
|
|
|
cgal_direction_t d;
|
|
|
|
|
IfcGeom::CgalKernel::convert(l->Orientation(),d);
|
|
|
|
|
v = l->Magnitude() * getValue(GV_LENGTH_UNIT) * d;
|
|
|
|
|
// CACHE(IfcVector,l,v)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 14:30:48 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcPlane* pln, cgal_plane_t& plane) {
|
|
|
|
|
// IN_CACHE(IfcPlane,pln,gp_Pln,plane)
|
|
|
|
|
IfcSchema::IfcAxis2Placement3D* l = pln->Position();
|
|
|
|
|
cgal_point_t o;
|
|
|
|
|
cgal_direction_t axis = Kernel::Vector_3(0,0,1);
|
2017-03-16 18:44:25 -06:00
|
|
|
cgal_direction_t refDirection = Kernel::Vector_3(1,0,0);
|
2017-03-07 14:30:48 -06:00
|
|
|
IfcGeom::CgalKernel::convert(l->Location(),o);
|
2017-03-09 17:04:37 -06:00
|
|
|
bool hasRef = l->hasRefDirection();
|
2017-03-07 14:30:48 -06:00
|
|
|
if ( l->hasAxis() ) IfcGeom::CgalKernel::convert(l->Axis(),axis);
|
2017-03-09 17:04:37 -06:00
|
|
|
if ( hasRef ) IfcGeom::CgalKernel::convert(l->RefDirection(),refDirection);
|
2017-03-16 18:44:25 -06:00
|
|
|
Kernel::Vector_3 y = CGAL::cross_product(axis, refDirection);
|
|
|
|
|
Kernel::Vector_3 x = CGAL::cross_product(y, axis);
|
|
|
|
|
|
2017-03-09 17:04:37 -06:00
|
|
|
cgal_plane_t ax3;
|
2017-03-16 18:44:25 -06:00
|
|
|
if ( hasRef ) ax3 = Kernel::Plane_3(o,o+x,o+y);
|
2017-03-09 17:04:37 -06:00
|
|
|
else ax3 = Kernel::Plane_3(o,axis);
|
|
|
|
|
plane = ax3;
|
2017-03-16 18:44:25 -06:00
|
|
|
|
|
|
|
|
// std::cout << "IfcPlane C = " << o << std::endl;
|
|
|
|
|
// std::cout << "IfcPlane z (axis, exact) = " << axis << std::endl;
|
|
|
|
|
// std::cout << "IfcPlane x (refDirection, approximate) = " << refDirection << std::endl;
|
|
|
|
|
// std::cout << "IfcPlane y (computed, exact) = " << y << std::endl;
|
|
|
|
|
// std::cout << "IfcPlane x (computed, exact) = " << x << std::endl;
|
|
|
|
|
//
|
|
|
|
|
// std::cout << "Plane_3 o = " << o << std::endl;
|
|
|
|
|
// std::cout << "Plane_3 o+x = " << o+x << std::endl;
|
|
|
|
|
// std::cout << "Plane_3 o+y = " << o+y << std::endl;
|
|
|
|
|
|
|
|
|
|
// ax + by + cz + d = 0
|
|
|
|
|
// std::cout << "Plane: a = " << plane.a() << ", b = " << plane.b() << ", c = " << plane.c() << ", d = " << plane.d() << std::endl;
|
|
|
|
|
|
|
|
|
|
// std::ofstream fresult;
|
|
|
|
|
// fresult.open("/Users/ken/Desktop/plane.obj");
|
|
|
|
|
// // x = -5, y = -5, z = (5a +5b -d)/c
|
|
|
|
|
// fresult << "v -5 -5 " << (5.0*CGAL::to_double(plane.a())+5.0*CGAL::to_double(plane.b())-CGAL::to_double(plane.d()))/CGAL::to_double(plane.c()) << std::endl;
|
|
|
|
|
// // x = -5, y = +5, z = (5a -5b -d)/c
|
|
|
|
|
// fresult << "v -5 5 " << (5.0*CGAL::to_double(plane.a())-5.0*CGAL::to_double(plane.b())-CGAL::to_double(plane.d()))/CGAL::to_double(plane.c()) << std::endl;
|
|
|
|
|
// // x = 5, y = -5, z = (-5a +5b -d)/c
|
|
|
|
|
// fresult << "v 5 -5 " << (-5.0*CGAL::to_double(plane.a())+5.0*CGAL::to_double(plane.b())-CGAL::to_double(plane.d()))/CGAL::to_double(plane.c()) << std::endl;
|
|
|
|
|
// // x = 5, y = +5, z = (-5a -5b -d)/c
|
|
|
|
|
// fresult << "v 5 5 " << (-5.0*CGAL::to_double(plane.a())-5.0*CGAL::to_double(plane.b())-CGAL::to_double(plane.d()))/CGAL::to_double(plane.c()) << std::endl;
|
|
|
|
|
// fresult << "f 1 2 3" << std::endl;
|
|
|
|
|
// fresult << "f 4 3 2" << std::endl;
|
|
|
|
|
// fresult.close();
|
|
|
|
|
|
2017-03-07 14:30:48 -06:00
|
|
|
// CACHE(IfcPlane,pln,plane)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 16:56:59 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcAxis2Placement2D* l, cgal_placement_t& trsf) {
|
|
|
|
|
// IN_CACHE(IfcAxis2Placement3D,l,gp_Trsf,trsf)
|
|
|
|
|
cgal_point_t o;
|
2017-03-03 12:58:52 -06:00
|
|
|
cgal_direction_t refDirection = Kernel::Vector_3(1,0,0);
|
2017-02-08 16:56:59 -06:00
|
|
|
IfcGeom::CgalKernel::convert(l->Location(),o);
|
|
|
|
|
bool hasRef = l->hasRefDirection();
|
|
|
|
|
if ( hasRef ) IfcGeom::CgalKernel::convert(l->RefDirection(),refDirection);
|
2017-03-16 18:44:25 -06:00
|
|
|
cgal_direction_t y = Kernel::Vector_3(-refDirection.y(), refDirection.x(), 0.0);
|
2017-02-08 16:56:59 -06:00
|
|
|
|
2017-03-16 18:44:25 -06:00
|
|
|
// TODO: Should be checked.
|
2017-02-08 16:56:59 -06:00
|
|
|
trsf = Kernel::Aff_transformation_3(refDirection.cartesian(0), y.cartesian(0), 0.0, o.cartesian(0),
|
|
|
|
|
refDirection.cartesian(1), y.cartesian(1), 0.0, o.cartesian(1),
|
2017-03-03 12:58:52 -06:00
|
|
|
0.0, 0.0, 1.0, 0.0);
|
2017-02-08 16:56:59 -06:00
|
|
|
|
|
|
|
|
// CACHE(IfcAxis2Placement3D,l,trsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-07 19:51:16 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcAxis2Placement3D* l, cgal_placement_t& trsf) {
|
|
|
|
|
// IN_CACHE(IfcAxis2Placement3D,l,gp_Trsf,trsf)
|
2017-02-07 20:25:04 -06:00
|
|
|
cgal_point_t o;
|
2017-02-07 20:37:47 -06:00
|
|
|
cgal_direction_t axis = Kernel::Vector_3(0,0,1);
|
2017-03-03 12:58:52 -06:00
|
|
|
cgal_direction_t refDirection = Kernel::Vector_3(1,0,0);
|
2017-02-07 20:25:04 -06:00
|
|
|
IfcGeom::CgalKernel::convert(l->Location(),o);
|
|
|
|
|
bool hasRef = l->hasRefDirection();
|
|
|
|
|
if ( l->hasAxis() ) IfcGeom::CgalKernel::convert(l->Axis(),axis);
|
|
|
|
|
if ( hasRef ) IfcGeom::CgalKernel::convert(l->RefDirection(),refDirection);
|
2017-03-16 18:44:25 -06:00
|
|
|
Kernel::Vector_3 y = CGAL::cross_product(axis, refDirection);
|
|
|
|
|
Kernel::Vector_3 x = CGAL::cross_product(y, axis);
|
2017-02-07 20:25:04 -06:00
|
|
|
|
2017-02-21 15:37:38 -06:00
|
|
|
// std::cout << "Ref direction: " << refDirection << std::endl;
|
|
|
|
|
// std::cout << "Axis: " << axis << std::endl;
|
|
|
|
|
// std::cout << "Origin: " << o << std::endl;
|
|
|
|
|
|
2017-03-16 18:44:25 -06:00
|
|
|
// TODO: Should be checked.
|
|
|
|
|
trsf = Kernel::Aff_transformation_3(x.cartesian(0), y.cartesian(0), axis.cartesian(0), o.cartesian(0),
|
|
|
|
|
x.cartesian(1), y.cartesian(1), axis.cartesian(1), o.cartesian(1),
|
|
|
|
|
x.cartesian(2), y.cartesian(2), axis.cartesian(2), o.cartesian(2));
|
2017-02-07 20:25:04 -06:00
|
|
|
|
2017-02-21 15:37:38 -06:00
|
|
|
// for (int i = 0; i < 3; ++i) {
|
|
|
|
|
// for (int j = 0; j < 4; ++j) {
|
|
|
|
|
// std::cout << trsf.cartesian(i, j) << " ";
|
|
|
|
|
// } std::cout << std::endl;
|
|
|
|
|
// }
|
|
|
|
|
|
2017-02-07 19:51:16 -06:00
|
|
|
// CACHE(IfcAxis2Placement3D,l,trsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcObjectPlacement* l, cgal_placement_t& trsf) {
|
2017-02-07 20:25:04 -06:00
|
|
|
// TODO: These macros don't work for the CGAL types. Need to check why.
|
2017-02-07 19:51:16 -06:00
|
|
|
// IN_CACHE(IfcObjectPlacement,l,cgal_placement_t,trsf)
|
|
|
|
|
if ( ! l->is(IfcSchema::Type::IfcLocalPlacement) ) {
|
|
|
|
|
Logger::Message(Logger::LOG_ERROR, "Unsupported IfcObjectPlacement:", l->entity);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-02-21 15:37:38 -06:00
|
|
|
|
|
|
|
|
// std::cout << "initial trsf (identity?)" << std::endl;
|
|
|
|
|
// for (int i = 0; i < 3; ++i) {
|
|
|
|
|
// for (int j = 0; j < 4; ++j) {
|
|
|
|
|
// std::cout << trsf.cartesian(i, j) << " ";
|
|
|
|
|
// } std::cout << std::endl;
|
|
|
|
|
// }
|
|
|
|
|
|
2017-02-07 19:51:16 -06:00
|
|
|
IfcSchema::IfcLocalPlacement* current = (IfcSchema::IfcLocalPlacement*)l;
|
|
|
|
|
for (;;) {
|
|
|
|
|
cgal_placement_t trsf2;
|
2017-02-21 15:37:38 -06:00
|
|
|
|
2017-02-07 19:51:16 -06:00
|
|
|
IfcSchema::IfcAxis2Placement* relplacement = current->RelativePlacement();
|
|
|
|
|
if ( relplacement->is(IfcSchema::Type::IfcAxis2Placement3D) ) {
|
|
|
|
|
IfcGeom::CgalKernel::convert((IfcSchema::IfcAxis2Placement3D*)relplacement,trsf2);
|
2017-02-21 15:37:38 -06:00
|
|
|
|
|
|
|
|
// std::cout << "trsf2" << std::endl;
|
|
|
|
|
// for (int i = 0; i < 3; ++i) {
|
|
|
|
|
// for (int j = 0; j < 4; ++j) {
|
|
|
|
|
// std::cout << trsf2.cartesian(i, j) << " ";
|
|
|
|
|
// } std::cout << std::endl;
|
|
|
|
|
// }
|
|
|
|
|
|
2017-02-07 20:37:47 -06:00
|
|
|
trsf = trsf * trsf2; // TODO: I think it's fine, but maybe should it be the other way around?
|
2017-02-21 15:37:38 -06:00
|
|
|
|
|
|
|
|
// std::cout << "trsf (after multiplication)" << std::endl;
|
|
|
|
|
// for (int i = 0; i < 3; ++i) {
|
|
|
|
|
// for (int j = 0; j < 4; ++j) {
|
|
|
|
|
// std::cout << trsf.cartesian(i, j) << " ";
|
|
|
|
|
// } std::cout << std::endl;
|
|
|
|
|
// }
|
2017-02-07 19:51:16 -06:00
|
|
|
}
|
|
|
|
|
if ( current->hasPlacementRelTo() ) {
|
|
|
|
|
IfcSchema::IfcObjectPlacement* relto = current->PlacementRelTo();
|
|
|
|
|
if ( relto->is(IfcSchema::Type::IfcLocalPlacement) )
|
|
|
|
|
current = (IfcSchema::IfcLocalPlacement*)current->PlacementRelTo();
|
|
|
|
|
else break;
|
|
|
|
|
} else break;
|
|
|
|
|
}
|
|
|
|
|
// CACHE(IfcObjectPlacement,l,trsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-03-02 17:11:58 -06:00
|
|
|
|
|
|
|
|
bool IfcGeom::CgalKernel::convert_wire_to_face(const cgal_wire_t& wire, cgal_face_t& face) {
|
|
|
|
|
face.outer = wire;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-03-06 16:03:29 -06:00
|
|
|
|
2017-03-13 22:32:12 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcCartesianTransformationOperator2D* l, cgal_placement_t& trsf) {
|
|
|
|
|
// IN_CACHE(IfcCartesianTransformationOperator2D,l,cgal_placement_t,trsf)
|
|
|
|
|
|
|
|
|
|
cgal_point_t origin;
|
|
|
|
|
cgal_direction_t axis1 (1.,0.,0.);
|
|
|
|
|
cgal_direction_t axis2 (0.,1.,0.);
|
|
|
|
|
|
|
|
|
|
IfcGeom::CgalKernel::convert(l->LocalOrigin(),origin);
|
|
|
|
|
if ( l->hasAxis1() ) IfcGeom::CgalKernel::convert(l->Axis1(),axis1);
|
|
|
|
|
if ( l->hasAxis2() ) IfcGeom::CgalKernel::convert(l->Axis2(),axis2);
|
|
|
|
|
double scale = 1.0;
|
|
|
|
|
if (l->hasScale()) {
|
|
|
|
|
scale = l->Scale();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Untested
|
|
|
|
|
trsf = Kernel::Aff_transformation_3(scale*axis1.cartesian(0), axis2.cartesian(0), 0.0, origin.cartesian(0),
|
|
|
|
|
axis1.cartesian(1), scale*axis2.cartesian(1), 0.0, origin.cartesian(1),
|
|
|
|
|
0.0, 0.0, 1.0, 0.0);
|
|
|
|
|
|
|
|
|
|
// CACHE(IfcCartesianTransformationOperator2D,l,trsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcCartesianTransformationOperator2DnonUniform* l, cgal_placement_t& gtrsf) {
|
|
|
|
|
// IN_CACHE(IfcCartesianTransformationOperator2DnonUniform,l,cgal_placement_t,gtrsf)
|
|
|
|
|
|
|
|
|
|
cgal_placement_t trsf;
|
|
|
|
|
cgal_point_t origin;
|
|
|
|
|
cgal_direction_t axis1 (1.,0.,0.);
|
|
|
|
|
cgal_direction_t axis2 (0.,1.,0.);
|
|
|
|
|
|
|
|
|
|
IfcGeom::CgalKernel::convert(l->LocalOrigin(),origin);
|
|
|
|
|
if ( l->hasAxis1() ) IfcGeom::CgalKernel::convert(l->Axis1(),axis1);
|
|
|
|
|
if ( l->hasAxis2() ) IfcGeom::CgalKernel::convert(l->Axis2(),axis2);
|
|
|
|
|
|
|
|
|
|
const double scale1 = l->hasScale() ? l->Scale() : 1.0f;
|
|
|
|
|
const double scale2 = l->hasScale2() ? l->Scale2() : scale1;
|
|
|
|
|
|
|
|
|
|
// TODO: Untested
|
|
|
|
|
trsf = Kernel::Aff_transformation_3(scale1*axis1.cartesian(0), axis2.cartesian(0), 0.0, origin.cartesian(0),
|
|
|
|
|
axis1.cartesian(1), scale2*axis2.cartesian(1), 0.0, origin.cartesian(1),
|
|
|
|
|
0.0, 0.0, 1.0, 0.0);
|
|
|
|
|
|
|
|
|
|
// CACHE(IfcCartesianTransformationOperator2DnonUniform,l,gtrsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-06 16:03:29 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcCartesianTransformationOperator3D* l, cgal_placement_t& trsf) {
|
|
|
|
|
// IN_CACHE(IfcCartesianTransformationOperator3D,l,gp_Trsf,trsf)
|
|
|
|
|
cgal_point_t origin;
|
|
|
|
|
IfcGeom::CgalKernel::convert(l->LocalOrigin(),origin);
|
|
|
|
|
cgal_direction_t axis1 (1.,0.,0.);
|
|
|
|
|
cgal_direction_t axis2 (0.,1.,0.);
|
|
|
|
|
cgal_direction_t axis3 (0.,0.,1.);
|
|
|
|
|
if ( l->hasAxis1() ) IfcGeom::CgalKernel::convert(l->Axis1(),axis1);
|
|
|
|
|
if ( l->hasAxis2() ) IfcGeom::CgalKernel::convert(l->Axis2(),axis2);
|
|
|
|
|
if ( l->hasAxis3() ) IfcGeom::CgalKernel::convert(l->Axis3(),axis3);
|
|
|
|
|
double scale = 1.0;
|
|
|
|
|
if (l->hasScale()) {
|
|
|
|
|
scale = l->Scale();
|
|
|
|
|
}
|
2017-03-06 17:29:20 -06:00
|
|
|
|
|
|
|
|
// TODO: Untested
|
2017-03-06 16:03:29 -06:00
|
|
|
trsf = Kernel::Aff_transformation_3(scale*axis1.cartesian(0), axis2.cartesian(0), axis3.cartesian(0), origin.cartesian(0),
|
|
|
|
|
axis1.cartesian(1), scale*axis2.cartesian(1), axis3.cartesian(1), origin.cartesian(1),
|
|
|
|
|
axis1.cartesian(2), axis2.cartesian(2), scale*axis3.cartesian(2), origin.cartesian(2));
|
|
|
|
|
|
2017-03-07 20:00:32 -06:00
|
|
|
// std::cout << std::endl;
|
2017-03-06 17:29:20 -06:00
|
|
|
// for (int i = 0; i < 3; ++i) {
|
|
|
|
|
// for (int j = 0; j < 4; ++j) {
|
|
|
|
|
// std::cout << trsf.cartesian(i, j) << " ";
|
|
|
|
|
// } std::cout << std::endl;
|
|
|
|
|
// }
|
|
|
|
|
|
2017-03-06 16:03:29 -06:00
|
|
|
// CACHE(IfcCartesianTransformationOperator3D,l,trsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 20:00:32 -06:00
|
|
|
bool IfcGeom::CgalKernel::convert(const IfcSchema::IfcCartesianTransformationOperator3DnonUniform* l, cgal_placement_t& gtrsf) {
|
|
|
|
|
// IN_CACHE(IfcCartesianTransformationOperator3DnonUniform,l,gp_GTrsf,gtrsf)
|
|
|
|
|
cgal_point_t origin;
|
|
|
|
|
IfcGeom::CgalKernel::convert(l->LocalOrigin(),origin);
|
|
|
|
|
cgal_direction_t axis1 (1.,0.,0.);
|
|
|
|
|
cgal_direction_t axis2 (0.,1.,0.);
|
|
|
|
|
cgal_direction_t axis3 (0.,0.,1.);
|
|
|
|
|
if ( l->hasAxis1() ) IfcGeom::CgalKernel::convert(l->Axis1(),axis1);
|
|
|
|
|
if ( l->hasAxis2() ) IfcGeom::CgalKernel::convert(l->Axis2(),axis2);
|
|
|
|
|
if ( l->hasAxis3() ) IfcGeom::CgalKernel::convert(l->Axis3(),axis3);
|
|
|
|
|
const double scale1 = l->hasScale() ? l->Scale() : 1.0f;
|
|
|
|
|
const double scale2 = l->hasScale2() ? l->Scale2() : scale1;
|
|
|
|
|
const double scale3 = l->hasScale3() ? l->Scale3() : scale1;
|
|
|
|
|
|
|
|
|
|
// TODO: Untested
|
|
|
|
|
gtrsf = Kernel::Aff_transformation_3(scale1*axis1.cartesian(0), axis2.cartesian(0), axis3.cartesian(0), origin.cartesian(0),
|
|
|
|
|
axis1.cartesian(1), scale2*axis2.cartesian(1), axis3.cartesian(1), origin.cartesian(1),
|
|
|
|
|
axis1.cartesian(2), axis2.cartesian(2), scale3*axis3.cartesian(2), origin.cartesian(2));
|
|
|
|
|
|
|
|
|
|
// for (int i = 0; i < 3; ++i) {
|
|
|
|
|
// for (int j = 0; j < 4; ++j) {
|
2017-03-08 19:38:25 -06:00
|
|
|
// std::cout << gtrsf.cartesian(i, j) << " ";
|
2017-03-07 20:00:32 -06:00
|
|
|
// } std::cout << std::endl;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// CACHE(IfcCartesianTransformationOperator3DnonUniform,l,gtrsf)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-06 16:03:29 -06:00
|
|
|
void IfcGeom::CgalKernel::remove_duplicate_points_from_loop(cgal_wire_t& polygon, bool closed, double tol) {
|
|
|
|
|
if (tol <= 0.) tol = getValue(GV_PRECISION);
|
|
|
|
|
tol *= tol;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < polygon.size(); ++i) {
|
|
|
|
|
for (int j = i+1; j < polygon.size(); ++j) {
|
|
|
|
|
if (CGAL::squared_distance(polygon[i], polygon[j]) < tol) {
|
|
|
|
|
polygon.erase(polygon.begin()+j);
|
|
|
|
|
--j;
|
|
|
|
|
}
|
|
|
|
|
} if (closed) {
|
|
|
|
|
if (CGAL::squared_distance(polygon.front(), polygon.back()) < tol) {
|
|
|
|
|
polygon.erase(polygon.begin()+polygon.size()-1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|