Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Delaunay cell's vertex index exceeds total number of vertex

Subject: CGAL users discussion list

List archive

[cgal-discuss] Delaunay cell's vertex index exceeds total number of vertex


Chronological Thread 
  • From: cecilia329 <>
  • To:
  • Subject: [cgal-discuss] Delaunay cell's vertex index exceeds total number of vertex
  • Date: Sat, 29 Feb 2020 12:00:13 -0600 (CST)
  • Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None ; spf=SoftFail ; spf=Pass
  • Ironport-phdr: 9a23:Uatq4BAjCNQNGFyki8unUyQJP3N1i/DPJgcQr6AfoPdwSPv4p8bcNUDSrc9gkEXOFd2Cra4d16yP6/irADRfqb+681k8M7V0HycfjssXmwFySOWkMmbcaMDQUiohAc5ZX0Vk9XzoeWJcGcL5ekGA6ibqtW1aFRrwLxd6KfroEYDOkcu3y/qy+5rOaAlUmTaxe7x/IAi5oAnLq8UanZduJqksxhfVoHZDZvhby35vKV+PkBnw4du98oR++CpKofIh8MBAUaT+f6smSLFTESorPWMo6sD1rBfPVQSA6GcSXWUQiRpIHhPK7ArmUZfrsyv1rfRy1S+HNsDrV780WDCi76B2SB/0jSoMKjA0/H3LhsF2kalWpg+qqR5izI7OeIybOvpwcL3ec90HSmVOQslfWjddAo6+c4cDE/YNMfpGo4T7ulAArQG+BQ6pBO731jBHmGP53aw+0+QgCw7L0hIsEtYTu3nTrNT6KrwSUeexzKbS1zXOdPBW2TDn6IfWaB8tu+uDUq5qfcrS00kiDgXIhUiep4ziOjOazOUNs26D4upmT+2gkHUoqwVvrTS12sgsjYzJi4QIwV7H7SV02Js5KNm8RUJhb9OpE4FcuiKbOodsQ84vQmdlszsgxLIco560Zi0KxYwnxxHBb/yHdJCF4hTsWeqLJzd3nmlqd6m7hxms60Sv1ur8Vsys3FZLqCpKjMXMu2gQ2xHX7sWLUPVw80S71TuM1g3f8OBJLEEsmareMZEhw7owlpQJsUTEGy/7gEX3g7GNdkUj/uin8f7nb67lpp+bLY97lBvxPr40lcOjG+g4MRIOU3CB+eugzL3j4VH5QLJSg/IqnanWqpTaKd0Gqa64GA9azpsj6w2kDzq9y9QZnXwHLEpfdx6djojpPUvOIPHiAvuljVSsimQj+/eTNbLoBtDBL2PIjaz6Vbd78U9VjgQpnv5F4JcBAbwKIfbyUxSr5ZSMHxIiNAi92c7kD89w38UXUiSMGPnKY+vprVaU67d3cKG3b4gPtWOlcqR317vVlXY83GQlU+yxx5JOMyK7Ge5rKgOQajzvmIVZSDZYjk8FVOXvzWa6f3tWbne2Ubg742hgWoGhF4rKAImmxr+bjnziQ89mI1teA1XJKk/GMoWJX/BVNXCUfolnmzYOUbXnQIgkh0ij

Hello,

I'm quite new to this CGAL library and planning to draw 3d delaunay
triangulation.

cout << dt3;
shows the output shown below, and I can't understand the last part which
shows the information about the cell's 4 vertex. I searched past discussions
and figured out that vertex 0 is for the ifinite cells. Then what about
cells such as 2 5 7 1? What does 7 mean? Shouldn't the maximum index be 5 in
my case?


Thank you:)

----------------------------------------------------------------------------------------------
3
5
-0.0637694 -0.166919 -0.980245
0.402024 0.37029 0.284583
0.789346 -0.448131 0.179006
0.6388 0.146318 -0.428829
0.710744 0.200153 -0.406391
8
1 2 3 4
3 2 1 0
4 2 3 5
0 3 2 5
4 1 2 5
0 2 1 5
3 1 4 5
1 3 0 5
2 6 4 1
5 7 3 0
3 6 4 0
2 5 7 1
5 2 6 0
4 7 3 1
4 2 7 0
3 5 6 1

--------------------------------------------

There is nothing special about the code.

std::vector<K::Point_3> points;
CGAL::Random_points_in_sphere_3<K::Point_3, Creator> g(1.0);
std::copy_n(g, 5, std::back_inserter(points));

DT3 dt3(points.begin(), points.end());



--
Sent from: http://cgal-discuss.949826.n4.nabble.com/


  • [cgal-discuss] Delaunay cell's vertex index exceeds total number of vertex, cecilia329, 02/29/2020

Archive powered by MHonArc 2.6.18.

Top of Page