Re: [fpc-pascal] Systems 2005: A first summary

2005-10-28 Thread Bisma Jayadi
It's a great news to know FPC and Lazarus getting more and more popular and starting to be counted in serious software development. I'm really glad to hear and see this. :) I got few suggestions, especially to target more Delphi developers. 1. Maybe it'll better for public and new users to kno

Re: [fpc-pascal] Systems 2005: A first summary

2005-10-28 Thread L505
> Hello *, > > I've written a first small summary about our experiences at Systems 2005 in > Munich, Germany, this week: > http://www.freepascal.org/wiki/index.php/Systems_2005 > > probably more detailed information will follow within the next few days. > > > Regards, > Sebastian > Those a

[fpc-pascal] Systems 2005: A first summary

2005-10-28 Thread Sebastian Guenther
Hello *, I've written a first small summary about our experiences at Systems 2005 in Munich, Germany, this week: http://www.freepascal.org/wiki/index.php/Systems_2005 probably more detailed information will follow within the next few days. Regards, Sebastian -- Telefonieren Sie schon oder spa

RE: [fpc-pascal] Bindings to Computational Geometry libraries

2005-10-28 Thread Cox, Stuart TRAN:EX
Thanks Tony. The FastGEO routines are quite useful, as you noticed, but it would be great to be able to work with the others as well. Not all functionality is duplicated between them and the XYZGeoBench, being for Mac Pascal, has its own way of looking at things. Let's see what other interes

Re: [fpc-pascal] Bindings to Computational Geometry libraries

2005-10-28 Thread Tony Pelton
On 10/28/05, Cox, Stuart TRAN:EX <[EMAIL PROTECTED]> wrote: > There are a number of Computational Geometry libraries available from the > web. It would be nice to be able to use them in the Pascal world. Does > anyone have bindings or wrappers or translations to FP for LEDA, CGAL or say > XYZGeob

[fpc-pascal] Bindings to Computational Geometry libraries

2005-10-28 Thread Cox, Stuart TRAN:EX
There are a number of Computational Geometry libraries available from the web. It would be nice to be able to use them in the Pascal world. Does anyone have bindings or wrappers or translations to FP for LEDA, CGAL or say XYZGeobench? Stu Cox Project Management Technician Southern Interior Regio

Re: [fpc-pascal] Threads

2005-10-28 Thread Paul Davidson
On Oct 28, 2005, at 9:12, Michael Van Canneyt wrote: On Fri, 28 Oct 2005, Paul Davidson wrote: Would it be possible to add a property to TThreads to expose DefaultStackSize in rtl/inc/threadh.inc Or something similar. It should be possible, yes, however this will require that the stack s

Re: [fpc-pascal] Threads

2005-10-28 Thread Michael Van Canneyt
On Fri, 28 Oct 2005, Paul Davidson wrote: Would it be possible to add a property to TThreads to expose DefaultStackSize in rtl/inc/threadh.inc Or something similar. It should be possible, yes, however this will require that the stack size is added to the constructor: the constructor calls b

[fpc-pascal] Threads

2005-10-28 Thread Paul Davidson
Would it be possible to add a property to TThreads to expose DefaultStackSize in rtl/inc/threadh.inc Or something similar. Working on app that uses lots of complex recursion. Ran into problems and ended rewriting this component. In order to meet stack size limit, program runs much slower.