Tagged Questions

6
votes
6answers
2k views

Visual C++: How to disable specific linker warnings?

I'm using a library from CGAL which during the linking stage of my code compilation produces a lot of linking warnings of this form: warning LNK4099: PDB 'vc80.pdb' was not found with …
6
votes
7answers
2k views

Polygon Triangulation with Holes

I am looking for an algorithm or library (better) to break down a polygon into triangles. I will be using these triangles in a Direct3D application. What are the best available options? Here is what …
3
votes
1answer
97 views

CGAL: erroneous Delaunay result?

Hi all, The result of my Delaunay triangulation on 1000 unifomally random points doens't look right at all (see image). Some points seem to belong an abnormally high number of triangles... Any idea? …
2
votes
1answer
114 views

What’s a good library to do computational geometry (like CGAL) in a garbage-collected language?

I need a library to handle computational geometry in a project, especially boolean operations, but just about every feature is useful. The best library I can find for this is CGAL, but this is the …
1
vote
1answer
110 views

Lightweight Delaunay trianguation library (for c++)

I'd like to play around with some (2D) Delaunay triangulations, and am looking for a reasonably small library to work with. I'm aware of CGAL, but I was wondering if there was something fairly simple …
1
vote
3answers
93 views

CGAL inheritance

How can I use an inherited class of a triangulation in the context of a triangulation in CGAL? Basically I have the following code: typedef CGAL::Exact_predicates_inexact_constructions_kernel K; …
1
vote
1answer
284 views

CGAL: Transformation Matrix for Rotation given two lines/vectors/directions

How do I generate a transformation matrix for rotating points/others by the angle between two lines/vectors/directions in CGAL? 2D is what I need. 3D is what I love.
0
votes
1answer
33 views

c++: CGAL 2D delauny triangulation: Concave Shapes

Hi, I am currently getting into CGAL for some 2D triangulation tasks and I also got something simple to work allready. Anyhow I dont really get how to triangulate concave shapes since Right now I …
0
votes
3answers
163 views

CGAL for .Net ( or C#)

Hello, I am not sure whether there is a .Net version of CGAL? The last time I check there is only one CGAL equivalent in garbage-collected language. If would be tremendously helpful if we have …
0
votes
3answers
884 views

Visual Studio/C++: How to turn off certain first-chance exception debug messages?

When I execute my C++ code (which uses the CGAL library) under debug mode, I see a lot of debug messages in the Output window about a first-chance exception CGAL::Uncertain_conversion_exception. I am …
0
votes
3answers
175 views

What happened to the python bindings for CGAL?

I found the Computational Geometry Algorithms Library in my search for an algorithm to decompose a concave polygon into the minimum number of convex components. Links off the site and numerous google …
0
votes
4answers
882 views

Visual C++ App crashes before main in Release, but runs fine in Debug

When in release it crashes with an unhandled exception: std::length error. The call stack looks like this: msvcr90.dll!__set_flsgetvalue() Line 256 + 0xc bytes C msvcr90.dll!__set_flsgetvalue() …