Xcode4.3 fixes for debug mode. refs #464
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@555 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -93,7 +93,7 @@ typename PolyMeshT<Kernel>::Normal
|
|||||||
PolyMeshT<Kernel>::
|
PolyMeshT<Kernel>::
|
||||||
calc_face_normal(FaceHandle _fh) const
|
calc_face_normal(FaceHandle _fh) const
|
||||||
{
|
{
|
||||||
assert(halfedge_handle(_fh).is_valid());
|
assert(this->halfedge_handle(_fh).is_valid());
|
||||||
ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
|
ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
|
||||||
|
|
||||||
Point p0 = this->point(fv_it);
|
Point p0 = this->point(fv_it);
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ typename TriMeshT<Kernel>::Normal
|
|||||||
TriMeshT<Kernel>::
|
TriMeshT<Kernel>::
|
||||||
calc_face_normal(FaceHandle _fh) const
|
calc_face_normal(FaceHandle _fh) const
|
||||||
{
|
{
|
||||||
assert(halfedge_handle(_fh).is_valid());
|
assert(this->halfedge_handle(_fh).is_valid());
|
||||||
ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
|
ConstFaceVertexIter fv_it(this->cfv_iter(_fh));
|
||||||
|
|
||||||
const Point& p0(this->point(fv_it)); ++fv_it;
|
const Point& p0(this->point(fv_it)); ++fv_it;
|
||||||
|
|||||||
Reference in New Issue
Block a user