Merge branch 'bugVvrange' into 'master'

fixes #3 by using cvv_cw iterators which are not deprecated

as i don't have a minimal code example to reproduce the bug #3 i could not verify, that it is actually fixed.
However i am pretty shure it is fixed.

See merge request !3
This commit is contained in:
Jan Möbius
2015-09-29 16:48:56 +02:00

View File

@@ -1198,10 +1198,10 @@ public:
typedef CirculatorRange<
const PolyConnectivity,
ConstVertexVertexIter,
ConstVertexVertexCWIter,
VertexHandle,
&PolyConnectivity::cvv_begin,
&PolyConnectivity::cvv_end> ConstVertexVertexRange;
&PolyConnectivity::cvv_cwbegin,
&PolyConnectivity::cvv_cwend> ConstVertexVertexRange;
typedef CirculatorRange<
const PolyConnectivity,
ConstVertexIHalfedgeIter,