cgal

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 named Kernel What could the reasons be? thanks ...

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? ...

CGAL Newbie Question: Which segments intersect?

Hi, 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? I don't have any experience with the CGAL library and Computer Geometry at all. I just need an algorithm for doing the stuff mentione...