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
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
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,
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
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