Tagged Questions
The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library. CGAL is used in various areas needing geometric computation, such as: computer graphics, scientific visualization, computer aided design and modeling, geographic information systems, molecular biology, medical imaging, robotics and motion planning, mesh generation, numerical methods... (visit http://www.cgal.org/)
21
votes
5answers
19k 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 ...
10
votes
7answers
8k 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 ...
7
votes
2answers
1k 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 ...
5
votes
1answer
148 views
How to compute a point on a line in CGAL
Given a 3D line in CGAL, how do I compute a point on that line that is some known distance from an endpoint?
5
votes
4answers
1k views
CGAL for .Net ( or C#)
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 CGAL.net.
...
5
votes
3answers
4k 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 ...
4
votes
1answer
414 views
CGAL: erroneous Delaunay result?
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?
Thanks
...
4
votes
3answers
707 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 ...
3
votes
1answer
165 views
CGAL: Find face/triangle a point belongs to?
After reading about it I've come to this:
#include <vector>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Delaunay_triangulation_2.h>
typedef ...
3
votes
3answers
1k 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 ...
2
votes
8answers
237 views
Is there a free C++ IDE for Linux with these features? [closed]
List all methods in a class, preferably with options to enable/disable methods from superclasses.
Option for a "go to source" once you select a variable.
I'm trying to use CGAL and I can't make ...
2
votes
2answers
137 views
How to get the source and target points from Edge_iterator in CGAL
I have a Delaunay triangulation over some points and want to iterate over all of the edges in it in length-ascending order in order to build a minimum spanning thread.
I've tried with the following ...
2
votes
2answers
255 views
CGAL replacement for iOS
I have a set of nodes that define streets. Each node has latitude and longitude. Also I have user location with latitude and longitude. My intention is to build Voronoi diagram for segments defined by ...
2
votes
1answer
111 views
Getting Vertex_handles to the points of a delaunay triangulation
I want to iterate through all vertices of a CGAL::Delaunay_triangulation_2, but am unable to find documentation about getting all the vertex handles.
The documentation I found for this explained how ...
2
votes
1answer
192 views
CGAL Newbie Question: Which segments intersect?
i'm having a set of segments (each defined with two points; 2D) and want to know for every segment x, how many other segments y1,..., yn are intersecting x.
How would you do that efficiently in CGAL?
...
2
votes
2answers
434 views
CGAL 3.4: How do I get end vertex co-ordinates from a Finite_edges_iterator?
Here is some code:
struct K : CGAL::Exact_predicates_inexact_constructions_kernel {};
typedef CGAL::Triangulation_vertex_base_2<K> Vb;
typedef ...
2
votes
3answers
1k views
How do I iterate over faces in CGAL
I am trying to use CGAL to do some Delaunay triangulation. I used one of the CGAL samples to compute a triangulation which includes a height field attribute.
The problem I have having is that I have ...
1
vote
1answer
65 views
How do you include CGAL into a QT project in QT Creator?
I am trying to run some of the sample example code from CGAL as a Qt project, to run in Qt Creator. I expect that I will have to modify the .pro file. How should it be modified to use CGAL ...
1
vote
2answers
63 views
How to get the Voronoi diagram of some points to display in QT?
I have some points plotted on a QGraphicsScene in QT and have encapsulated them into a point class. I want to compute and display the Voronoi diagram of thse points onto the scene. What is the best ...
1
vote
0answers
56 views
Compiling a basic CGAL program in C++ on Mac OS X 10.7.2
When I tried to compile Voronoi_Diagram_2 example I am getting this output:
singhg@~/Programming/examples/Voronoi_diagram_2 $ cmake -DCGAL_DIR=/opt/local/lib/cmake/
CMake Error at CMakeLists.txt:20 ...
1
vote
4answers
68 views
Check which mesh element is inside the original polygons
I have a set of non-overlapping polygons. These polygons can share nodes, edges, but strictly no overlapping.
Now, I am going to mesh them using Constrainted Delaunay Triangulation (CDT) technique. I ...
1
vote
2answers
100 views
CGAL versus VTK
Hi what is the difference between the CGAL and the VTK libraries? Both incorporate a lot of the standard geometric algorithms. Can anyone list some application domains where the one is preferred over ...
1
vote
0answers
32 views
What is a good library for dealing with implicitly defined geometrical surfaces?
I'm looking for a good library for storing and manipulating geomtry that is defined as a scalar field (also called an implicit surface definition, functional representation (F-rep) or sometimes ...
1
vote
2answers
474 views
Point cloud alignment using principal component analysis with CGAL
I have sets of randomly sampled points on the surface of 3D objects. I want to be able to compute the similarity between two different objects. To make that work, I first have to make sure that the ...
1
vote
1answer
178 views
Getting a vertex_handle from an edge_iterator
I'm having quite some difficulty getting a vertex_handle for each of the end points of an edge in a Delaunay triangulation. Since I hammered my head against this for several hours I thought maybe one ...
1
vote
1answer
156 views
_swig_getattr AttributeError
I'm getting an attribute error using swig to wrap a c function for use in python code. I've got other functions alongside chap that work just fine, but some strange reason this one will not work :/
...
1
vote
1answer
136 views
CGAL linker error - Symbol not found: ___gmpq_clear
I'm trying to incorporate CGAL into an existing simulation project, but am having some linker trouble. The python simulation keiro.py uses a file called physics.cpp in a swig wrapper for speeding up ...
1
vote
0answers
214 views
Customizing CGAL Kernel with my own Point class
I would like to use a custom Point class with the CGAL constrained delaunay triangulation. However, with the following MyPoint class (which should behave the exact same as a CGAL::Point_2 no?) I get ...
1
vote
2answers
355 views
Representing planar graphs / GIS topology: ArcObjects vs. CGAL arrangements
I need to represent a planar graph structure, i.e., a division of part of the plane into polygons so that I can easily find a polygon's neighbors etc (like on a map). What is the best library to use? ...
1
vote
2answers
890 views
c++: CGAL 2D delauny triangulation: Concave Shapes
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 always ...
1
vote
3answers
174 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
819 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.
1
vote
4answers
2k 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() ...
0
votes
0answers
26 views
max flow min cost using BGL/CGAL
Can anyone advice what's the most efficient way to compute maximum flow minimum cost using BGL/CGAL?
AFAIK using BGL I run a maximum flow algorithm first, then store the flows for every edge (that's ...
0
votes
1answer
34 views
CGAL in Eclipse on OSX
I am trying to use CGAL on OS X 10.7 with Eclipse. I installed CGAL via MacPorts and made Eclipse aware of that by adding /opt/local/include to it's include lists. Now I get linker errors. I am a bit ...
0
votes
0answers
24 views
SOLVED: makefile for CGAL (libcgal8)
I don't know why, but at each new version of CGAL, the procedure to compile completely changes. So, it's not even possible to recompile old piece of code (6 months old) because it doesn't work like ...
0
votes
0answers
95 views
CGAL Program (and Examples) Not Getting Compiled in Mac OS X 10.7 Lion
System Info: Mac OS x 10.7
CGAL installed in: CGAL INCLUDES are in /opt/local/include/CGAL/ CGAL
LIBRARIES are in /opt/local/lib/cmake
CGAL INFO: ...
0
votes
1answer
35 views
What exactly is an OutputIterator and how to build one for use with CGAL Kd_tree::search?
I'm using CGAL's Kd-tree implementation along with Fuzzy spheres as query objects to get the points enclosed in a sphere of radius r_max centered at a point. Here is this minimal working example:
...
0
votes
1answer
83 views
CGAL: Help getting triangles coordinates from Delaunay Triangulation
I'm new with CGAL, i'm sure my question is very simple.
I am trying to use CGAL to do some Delaunay triangulation. I have a grid with N 3D points over a sphere and I want to triangulate the sphere ...
0
votes
1answer
23 views
Assigned objects in child function not updated in parent function
This is a cgal related question, but I think it is also a general C++ question, so I ask it here.
I am trying to use the Alpha_shape_2 class, and assign it to AlphaShapeCg class in a subroutine ...
0
votes
0answers
54 views
“missing template arguments” including cgal headers
I'm experimenting with adding CGAL to my app to replace my existing half-edge implementation, however, I seem to be getting an error just trying to include any of the headers.
missing template ...
0
votes
1answer
125 views
CGAL 2D Delaunay Triangulation: How to get all the edges
How to get/iterate over all the edges in the 2D delaunay graph in CGAL (C++)?
For example, in MATLAB this is just edges(dt).
0
votes
0answers
86 views
Building CGAL for 32 bit architecture — or Cinder for 64-bit [closed]
Has anyone ever tried to build CGAL for i386 (32 bit) architecture? My issue is that I'm trying to get CGAL to work with Cinder, which is by default compiled for i386. Alternately I could try to get ...
0
votes
0answers
80 views
build cgal-python on Mac OS X Lion
I followed the ReadMe for cgal-python and have met all the pre-requisites:
cgal 3.8, python2.4
However, I still got the following type of errors (snippet) when building cgal-python:
...
0
votes
1answer
119 views
compile cgal-python
I tried to build cgal-python and had the following errors (just a snippet):
In file included from /opt/local/include/boost/config.hpp:40,
from /opt/local/include/CGAL/config.h:37,
...
0
votes
0answers
159 views
CGAL 3d Delaunay triangulation keeping initial surface structure
I have a problem with 3d mesh generation using CGAL. I have a 3d surface (given by a set of triangles) and I need to generate mesh with 3d Delaunay triangulation (i.e. set of tetrahedrons) within this ...
0
votes
1answer
189 views
CGAL: Intersection between a segment and a polygon?
I have a set of polygons and I want to test intersection between it and a segment.
I checked the manual but I cannot find a matching function.
The intersection between points, lines, segments, ...
0
votes
1answer
48 views
How to build CGAL with tracing enabled (esp CGAL_NEF_TRACEN)
I am trying to debug an assertion failure exception I get with the CGAL library. CGAL has well placed debug and trace statements all over the library, which I can use to understand what's happening in ...
0
votes
0answers
39 views
CGAL Ray_2_Iso_rectangle_2_pair error
I have a project source code that uses CGAL library. I have installed CGAL following the instructions on the CGAL site and works fine.
My problem is that when I try to compile the project I get the ...
0
votes
0answers
117 views
cgal python exception
from CGAL.Kernel import *
raises an exception as follows:
File "C:/Python26/Lib/site-packages/cgal\CGAL\__init__.py", line 1, in <module>
from Kernel import *
ImportError: No module ...