Removed unused private functions

This commit is contained in:
Jan Möbius
2023-08-23 09:38:27 +02:00
parent df85af6ade
commit 43e13b6e7d
4 changed files with 1 additions and 13 deletions

View File

@@ -86,10 +86,6 @@ class ModIndependentSetsT: public ModBaseT<MeshT> {
Base::mesh().status(*vv_it).set_locked(true);
}
private:
/// hide this method
void set_binary(bool _b) { }
};
//=============================================================================

View File

@@ -104,7 +104,7 @@ public:
public:
/// Constructor
ModNormalDeviationT(MeshT& _mesh, float _max_dev = 180.0)
explicit ModNormalDeviationT(MeshT& _mesh, float _max_dev = 180.0)
: Base(_mesh, true), mesh_(Base::mesh())
{
set_normal_deviation(_max_dev);

View File

@@ -181,11 +181,6 @@ public:
min_cos_ = cos(max_deviation_);
}
private:
// hide this method
void set_binary(bool _b) {}
private:
// maximum normal deviation

View File

@@ -171,9 +171,6 @@ public: // specific methods
private:
// hide this method form user
void set_binary(bool _b) {}
InfoList pmi_;
VPropHandleT<size_t> idx_;
};