Fix to build with correct two phase name lookup (xcode 4.3 compatibility for OpenMesh). The template base class members are not found otherwise.
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@552 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -72,11 +72,11 @@ TriMeshT<Kernel>::
|
||||
calc_face_normal(FaceHandle _fh) const
|
||||
{
|
||||
assert(halfedge_handle(_fh).is_valid());
|
||||
ConstFaceVertexIter fv_it(cfv_iter(_fh));
|
||||
ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
|
||||
|
||||
const Point& p0(point(fv_it)); ++fv_it;
|
||||
const Point& p1(point(fv_it)); ++fv_it;
|
||||
const Point& p2(point(fv_it));
|
||||
const Point& p0(this->point(fv_it)); ++fv_it;
|
||||
const Point& p1(this->point(fv_it)); ++fv_it;
|
||||
const Point& p2(this->point(fv_it));
|
||||
|
||||
return PolyMesh::calc_face_normal(p0, p1, p2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user