put class in namespace tri, removed useless parameter from DistanceFromBorder()
This commit is contained in:
parent
5e1ccc4cfc
commit
36c902097a
|
@ -56,6 +56,7 @@ basic example: farthest vertex from a specified one
|
||||||
|
|
||||||
*/
|
*/
|
||||||
namespace vcg{
|
namespace vcg{
|
||||||
|
namespace tri{
|
||||||
template <class MeshType>
|
template <class MeshType>
|
||||||
class Geo{
|
class Geo{
|
||||||
|
|
||||||
|
@ -396,7 +397,6 @@ public:
|
||||||
Note: update the field Q() of the vertices
|
Note: update the field Q() of the vertices
|
||||||
*/
|
*/
|
||||||
static void DistanceFromBorder( MeshType & m,
|
static void DistanceFromBorder( MeshType & m,
|
||||||
VertexPointer & v0,
|
|
||||||
ScalarType & distance
|
ScalarType & distance
|
||||||
){
|
){
|
||||||
std::vector<VertexPointer> fro;
|
std::vector<VertexPointer> fro;
|
||||||
|
@ -409,4 +409,5 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
};// end namespace
|
};// end namespace tri
|
||||||
|
};// end namespace vcg
|
||||||
|
|
Loading…
Reference in New Issue