const correctneess mesh_to_matrix.h
This commit is contained in:
parent
f678fc8930
commit
96ad3c4f3a
|
|
@ -235,7 +235,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class VecType >
|
template< class VecType >
|
||||||
static void PerVertexArea(MeshType &m, VecType &h)
|
static void PerVertexArea(const MeshType &m, VecType &h)
|
||||||
{
|
{
|
||||||
tri::RequireCompactness(m);
|
tri::RequireCompactness(m);
|
||||||
h.resize(m.vn);
|
h.resize(m.vn);
|
||||||
|
|
@ -249,7 +249,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class VecType >
|
template< class VecType >
|
||||||
static void PerFaceArea(MeshType &m, VecType &h)
|
static void PerFaceArea(const MeshType &m, VecType &h)
|
||||||
{
|
{
|
||||||
tri::RequireCompactness(m);
|
tri::RequireCompactness(m);
|
||||||
h.resize(m.fn);
|
h.resize(m.fn);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue