Fixed warnings
This commit is contained in:
parent
6dd8199edf
commit
e6b2467f44
1 changed files with 2 additions and 1 deletions
|
@ -1118,7 +1118,7 @@ void GLGizmoMeasure::render_dimensioning()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
auto scale_feature = [this](Measure::SurfaceFeature& feature, const TrafoData& trafo_data) {
|
auto scale_feature = [](Measure::SurfaceFeature& feature, const TrafoData& trafo_data) {
|
||||||
switch (feature.get_type())
|
switch (feature.get_type())
|
||||||
{
|
{
|
||||||
case Measure::SurfaceFeatureType::Point:
|
case Measure::SurfaceFeatureType::Point:
|
||||||
|
@ -1146,6 +1146,7 @@ void GLGizmoMeasure::render_dimensioning()
|
||||||
feature = Measure::SurfaceFeature(Measure::SurfaceFeatureType::Plane, normal, trafo_data.transform(origin), std::nullopt, idx);
|
feature = Measure::SurfaceFeature(Measure::SurfaceFeatureType::Plane, normal, trafo_data.transform(origin), std::nullopt, idx);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
default: { break; }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue