Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Expr: v == V[3] error of triangulation in 3D

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Expr: v == V[3] error of triangulation in 3D


Chronological Thread 
  • From: "NAGAI, Yukie" <>
  • To:
  • Subject: Re: [cgal-discuss] Expr: v == V[3] error of triangulation in 3D
  • Date: Sun, 21 Jan 2007 10:51:27 +0900
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gAx4R2y2RhvJ8avqEZu1zIunrNdAExeayeG70uMfaGK2PhJPvAWump+4FgCWkhxoPZWCtPfkdGyPc6hsnz+rqMgr+R21HhgSbV0clTUmEnLlI+N/a9kcS2njvd529/cwrEyMAMMaI2OnABodf6Q7CUFrb4bUYVOau+fVW4vW+0g=

Thank you for your advices.

However, the vertex is deleted and recreated, and the vertex handle passed
as parameter is not valid anymore after the move (more precisely, it may
be valid, but you have no clue about how it is being used later).

> and I received an message:
>
> Expr: v == V[3]
> File: C:/NAGAI/CGAL/CGAL-3.2.1/include/CGAL/Triangulation_ds_cell_base_3.h
> Line: 98

Most probably, you try to move the same vertex handle twice. The second
time you move it, it is not a valid handle anymore, and the error you
receive means that vertex v does not belong to the cell whose method
index(v) is called.

You're right, I noticed that I tried to reuse old vertex handles.
Rewriting my code and making clear the construction about vertex handles,
my program goes well.
Thank you.


NAGAI, Yukie



Archive powered by MHonArc 2.6.16.

Top of Page