Removed unused (and unusable) Clear() method from Far::TopologyRefiner.

This commit is contained in:
barfowl 2015-01-05 19:41:41 -08:00
parent f9a7e08d44
commit 513dc96405
2 changed files with 2 additions and 12 deletions

View File

@ -79,12 +79,6 @@ TopologyRefiner::Unrefine() {
_refinements.clear(); _refinements.clear();
} }
void
TopologyRefiner::Clear() {
_levels.clear();
_refinements.clear();
}
// //
// Accessors to the topology information: // Accessors to the topology information:

View File

@ -151,10 +151,6 @@ public:
/// \brief Unrefine the topology (keep control cage) /// \brief Unrefine the topology (keep control cage)
void Unrefine(); void Unrefine();
/// \brief Clear the topology entirely
void Clear();
//@}
//@{ //@{
/// @name Primvar data interpolation /// @name Primvar data interpolation
/// ///
@ -381,8 +377,8 @@ public:
return not compFaceVertTag._xordinary; return not compFaceVertTag._xordinary;
} }
/// \brief Returns the edge with vertices'v0' and 'v1' (or -1 if they are /// \brief Returns the edge with vertices 'v0' and 'v1' (or INDEX_INVALID if
/// not connected) /// they are not connected)
Index FindEdge(int level, Index v0, Index v1) const { Index FindEdge(int level, Index v0, Index v1) const {
return _levels[level]->findEdge(v0, v1); return _levels[level]->findEdge(v0, v1);
} }