Fixed warnings
This commit is contained in:
parent
eeea803be5
commit
954cd105e0
@ -82,17 +82,6 @@ static std::string point_on_feature_type_as_string(Measure::SurfaceFeatureType t
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::string center_on_feature_type_as_string(Measure::SurfaceFeatureType type)
|
|
||||||
{
|
|
||||||
std::string ret;
|
|
||||||
switch (type) {
|
|
||||||
case Measure::SurfaceFeatureType::Edge: { ret = _u8L("Center of edge"); break; }
|
|
||||||
case Measure::SurfaceFeatureType::Circle: { ret = _u8L("Center of circle"); break; }
|
|
||||||
default: { assert(false); break; }
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static GLModel::Geometry init_plane_data(const indexed_triangle_set& its, const std::vector<std::vector<int>>& planes_triangles, int idx)
|
static GLModel::Geometry init_plane_data(const indexed_triangle_set& its, const std::vector<std::vector<int>>& planes_triangles, int idx)
|
||||||
{
|
{
|
||||||
assert(0 <= idx && idx < (int)planes_triangles.size());
|
assert(0 <= idx && idx < (int)planes_triangles.size());
|
||||||
@ -477,13 +466,6 @@ void GLGizmoMeasure::data_changed()
|
|||||||
m_is_editing_distance_first_frame = true;
|
m_is_editing_distance_first_frame = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool feature_has_center(std::optional<Measure::SurfaceFeature> feature)
|
|
||||||
{
|
|
||||||
return feature.has_value() ?
|
|
||||||
(feature->get_type() == Measure::SurfaceFeatureType::Circle || (feature->get_type() == Measure::SurfaceFeatureType::Edge && feature->get_extra_point().has_value()))
|
|
||||||
: false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool GLGizmoMeasure::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down)
|
bool GLGizmoMeasure::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_position, bool shift_down, bool alt_down, bool control_down)
|
||||||
{
|
{
|
||||||
if (action == SLAGizmoEventType::ShiftDown) {
|
if (action == SLAGizmoEventType::ShiftDown) {
|
||||||
|
Loading…
Reference in New Issue
Block a user