Skip to content

Commit

Permalink
ReverseEngineering: [skip ci] fix minor compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Mar 5, 2020
1 parent b0cecc4 commit dbe2924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/ReverseEngineering/Gui/FitBSplineSurface.cpp
Expand Up @@ -119,7 +119,7 @@ void FitBSplineSurfaceWidget::on_makePlacement_clicked()
const App::PropertyComplexGeoData* geom = geo->getPropertyOfGeometry();
if (geom) {
std::vector<Base::Vector3d> points, normals;
geom->getComplexData()->getPoints(points, normals, 0.001);
geom->getComplexData()->getPoints(points, normals, 0.001f);

std::vector<Base::Vector3f> data;
std::transform(points.begin(), points.end(), std::back_inserter(data), [](const Base::Vector3d& v) {
Expand Down

0 comments on commit dbe2924

Please sign in to comment.