Mapping of vertical profiles with IfcGradientCurve

This commit is contained in:
Richard Brice
2023-10-16 14:13:43 -07:00
parent 8497e655f5
commit 512b8b9e08
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ taxonomy::ptr mapping::map_impl(const IfcSchema::IfcGradientCurve* inst) {
auto xy = horizontal->evaluate(u);
auto z = vertical->evaluate(u);
Eigen::VectorXd vec(3);
vec << xy(0), xy(1), z(2);
vec << xy(0), xy(1), z(1);
return vec;
};