[Tutor] OO triangulation with attacment

2007-09-20 Thread János Juhász
Dear Tutors, I made an OO style triangulation based on an old C progam I made about 10 years ago. This makes Delaunay triangualtion over a point cloud in 2D. http://en.wikipedia.org/wiki/Delaunay_triangulation The sample is working finally. First time I made the triangulation with recursion, bu

Re: [Tutor] OO triangulation

2007-09-20 Thread Luke Paireepinart
bhaaluu wrote: > Greetings, > > I'm running Python 2.4 on a GNU/Linux system. > Actually, I was able to get this code to work after only a few > edits that had to do with line wrap, nothing more. Other people are less willing to do this than you are :) It's really the OP's prerogative to make messa

Re: [Tutor] OO triangulation

2007-09-20 Thread bhaaluu
Greetings, I'm running Python 2.4 on a GNU/Linux system. Actually, I was able to get this code to work after only a few edits that had to do with line wrap, nothing more. The code works fine, and although I don't understand what it is displaying, the display is rather interesting. On my 1GHz CPU,

Re: [Tutor] OO triangulation

2007-09-20 Thread Luke Paireepinart
János Juhász wrote: > Dear Tutors, > > I made an OO style triangulation based on an old C progam I made about 10 > years ago. > The sample is working finally. > First time I made the triangulation with recursion, but I reached the > recursion limit very shortly. > So I changed the recursion to a

[Tutor] OO triangulation

2007-09-19 Thread János Juhász
Dear Tutors, I made an OO style triangulation based on an old C progam I made about 10 years ago. The sample is working finally. First time I made the triangulation with recursion, but I reached the recursion limit very shortly. So I changed the recursion to a queue. I am interested about your