mirror of https://github.com/CGAL/cgal
At last, the norgevian bug of Notterroy is fixed!
This commit is contained in:
parent
2f5f339a06
commit
a6ec4e433e
|
|
@ -879,7 +879,12 @@ create_clusters_of_vertex(Vertex_handle v)
|
||||||
bool in_a_cluster = false;
|
bool in_a_cluster = false;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
if(is_small_angle(current->point(), v->point(), next->point()))
|
Face_handle f;
|
||||||
|
int i;
|
||||||
|
is_edge(v, next, f, i); // put in f the face on the right side
|
||||||
|
// of (v,next)
|
||||||
|
if(f->is_marked() &&
|
||||||
|
is_small_angle(current->point(), v->point(), next->point()))
|
||||||
{
|
{
|
||||||
if(!in_a_cluster)
|
if(!in_a_cluster)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue