Delaunay triangulation

2009-12-02 Thread Vincent Davis
Anyone know of a python implementation of Delaunay triangulation? *Vincent Davis 720-301-3003 * vinc...@vincentdavis.net my blog http://vincentdavis.net | LinkedInhttp://www.linkedin.com/in/vincentdavis -- http://mail.python.org/mailman/listinfo/python-list

Re: Delaunay triangulation

2009-12-02 Thread David Robinow
On Tue, Dec 1, 2009 at 8:31 PM, Vincent Davis vinc...@vincentdavis.net wrote: Anyone know of a python implementation of Delaunay triangulation? Matplotlib has one. There's also Delny @pypi It's been several years since I needed this. I can't remember the pros/cons. -- http://mail.python.org

Re: Delaunay triangulation

2009-12-02 Thread km
check CGAL (cgal.org) it has python bindings Krishna On Wed, Dec 2, 2009 at 11:28 PM, David Robinow drobi...@gmail.com wrote: On Tue, Dec 1, 2009 at 8:31 PM, Vincent Davis vinc...@vincentdavis.net wrote: Anyone know of a python implementation of Delaunay triangulation? Matplotlib has one

Re: Delaunay triangulation

2009-12-02 Thread sturlamolden
On 2 Des, 15:28, David Robinow drobi...@gmail.com wrote: On Tue, Dec 1, 2009 at 8:31 PM, Vincent Davis vinc...@vincentdavis.net wrote: Anyone know of a python implementation of Delaunay triangulation? Matplotlib has one. There's also Delny �...@pypi It's been several years since I needed

Re: Delaunay triangulation

2009-12-02 Thread Vincent Davis
drobi...@gmail.com wrote: On Tue, Dec 1, 2009 at 8:31 PM, Vincent Davis vinc...@vincentdavis.net wrote: Anyone know of a python implementation of Delaunay triangulation? Matplotlib has one. There's also Delny @pypi It's been several years since I needed this. I can't remember

Re: Looking for Delaunay triangulation module...

2007-09-04 Thread Grant Edwards
On 2007-09-03, Grant Edwards [EMAIL PROTECTED] wrote: On 2007-09-02, Robert Kern [EMAIL PROTECTED] wrote: Can anybody point me to a Delaunay triangulation module (for Win32)? I'm currently using http://flub.stuffwillmade.org/delny/ under Linux, but I have been unable to find a build

Re: Looking for Delaunay triangulation module...

2007-09-03 Thread Grant Edwards
On 2007-09-02, Robert Kern [EMAIL PROTECTED] wrote: Can anybody point me to a Delaunay triangulation module (for Win32)? I'm currently using http://flub.stuffwillmade.org/delny/ under Linux, but I have been unable to find a build for Windows. I don't have the tools (or skills) to build

Re: Looking for Delaunay triangulation module...

2007-09-02 Thread Robert Kern
Grant Edwards wrote: Can anybody point me to a Delaunay triangulation module (for Win32)? I'm currently using http://flub.stuffwillmade.org/delny/ under Linux, but I have been unable to find a build for Windows. I don't have the tools (or skills) to build libqhull and Pythion extensions

Re: Looking for Delaunay triangulation module...

2007-09-01 Thread [EMAIL PROTECTED]
On Sep 1, 12:24 am, Grant Edwards [EMAIL PROTECTED] wrote: On 2007-09-01, Lawrence D'Oliveiro [EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED], Grant Edwards wrote: So for lack of a delaunay module, I'm stuck trying to port my application to Win32. Why not run it under Cygwin? :)

Re: Looking for Delaunay triangulation module...

2007-09-01 Thread Grant Edwards
On 2007-09-01, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: So for lack of a delaunay module, I'm stuck trying to port my application to Win32. Why not run it under Cygwin? :) I'm hoping there is an easier way than trying to build a half-dozen large Python extensions (and their supporting

Looking for Delaunay triangulation module...

2007-08-31 Thread Grant Edwards
Can anybody point me to a Delaunay triangulation module (for Win32)? I'm currently using http://flub.stuffwillmade.org/delny/ under Linux, but I have been unable to find a build for Windows. I don't have the tools (or skills) to build libqhull and Pythion extensions on Win32). I've also found

Re: Looking for Delaunay triangulation module...

2007-08-31 Thread Grant Edwards
On 2007-08-31, Grant Edwards [EMAIL PROTECTED] wrote: So for lack of a delaunay module, I'm stuck trying to port my application to Win32. I've found that VTK contains a Delaunay triangulation module, and Entought Python includes VTK, so that's next on my list of things to try as soon as VTK

Re: Looking for Delaunay triangulation module...

2007-08-31 Thread Lawrence D'Oliveiro
In message [EMAIL PROTECTED], Grant Edwards wrote: So for lack of a delaunay module, I'm stuck trying to port my application to Win32. Why not run it under Cygwin? :) -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for Delaunay triangulation module...

2007-08-31 Thread Grant Edwards
On 2007-09-01, Lawrence D'Oliveiro [EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED], Grant Edwards wrote: So for lack of a delaunay module, I'm stuck trying to port my application to Win32. Why not run it under Cygwin? :) :) I'm hoping there is an easier way than trying to build a