Re: [Flightgear-devel] Not Building for MacOS X Because of isnan()

2004-03-07 Thread Erik Hofman
Jonathan Polley wrote: For some reason, when iostream is included, it messes with the #include of math.h by undefining isnan(0, no matter the order of the include. In order for me to get cloud.cxx to build, I had to add the following lines after the #include of math.h #if defined (__APPLE__)

Re: [Flightgear-devel] FlightGear talk at UseLinux, Boston, July 2004

2004-03-07 Thread Erik Hofman
Jon Berndt wrote: Great news! Usenix have accepted my abstract so I'm going to write the talk and the paper over the next few weeks. Title: The FlightGear Flight Simulator Author(s): Alexander R Perry, PAMurray Very cool. The exposure grows ... Great news indeed! Erik

Re: [Flightgear-devel] Compiling under MS visual studio .NET 2003 -

2004-03-07 Thread Frederic Bouvier
Frederic Bouvier wrote: Olivier, Marco, the props.cxx problem is solved in CVS. The right fix was to replace ... Tell us if there are remining problems, with compiler error message -Fred - Original Message - From: Olivier Soussiel Hello Marco, Yep, I've got the same

[Flightgear-devel] Spitfire Hurricane manuals

2004-03-07 Thread Erik Hofman
http://home.clara.net/wolverine/BOB/misc/Spit_Hurri_Manuals.zip Erik ___ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel

RE: [Flightgear-devel] Spitfire Hurricane manuals

2004-03-07 Thread Vivian Meazza
Erik Hofman wrote http://home.clara.net/wolverine/BOB/misc/Spit_Hurri_Manuals.zip Is this a hint ;-)? Vivian Meazza ___ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Re: [Flightgear-devel] Spitfire Hurricane manuals

2004-03-07 Thread Erik Hofman
Vivian Meazza wrote: Erik Hofman wrote http://home.clara.net/wolverine/BOB/misc/Spit_Hurri_Manuals.zip Is this a hint ;-)? Yes. Erik ___ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Re: [Flightgear-devel] Spitfire Hurricane manuals

2004-03-07 Thread Erik Hofman
Vivian Meazza wrote: Oddly enough, last weekend I found a book in my local bookstore on the Spitfire MkIIb, containing line drawings. I'll see if it's still there. If it is, I could do a model especially with the info in the pilot's notes. Is there a demand for a Spitfire IIB? There was a

[Flightgear-devel] Re: Spitfire Hurricane manuals

2004-03-07 Thread Melchior FRANZ
* Vivian Meazza -- Sunday 07 March 2004 11:53: Oddly enough, last weekend I found a book in my local bookstore on the Spitfire MkIIb, containing line drawings. Here are a lot of line drawings: http://www.fortunecity.com/marina/manatee/272/ Some are of poor quality, though.

RE: [Flightgear-devel] Spitfire Hurricane manuals

2004-03-07 Thread Vivian Meazza
Erik Hofman wrote Vivian Meazza wrote: Oddly enough, last weekend I found a book in my local bookstore on the Spitfire MkIIb, containing line drawings. I'll see if it's still there. If it is, I could do a model especially with the info in the pilot's notes. Is there a demand

RE: [Flightgear-devel] Re: Spitfire Hurricane manuals

2004-03-07 Thread Vivian Meazza
Melchior FRANZ wrote Sent: 07 March 2004 11:08 To: [EMAIL PROTECTED] Subject: [Flightgear-devel] Re: Spitfire Hurricane manuals * Vivian Meazza -- Sunday 07 March 2004 11:53: Oddly enough, last weekend I found a book in my local bookstore on the Spitfire MkIIb, containing line

Re: [Flightgear-devel] Re: Spitfire Hurricane manuals

2004-03-07 Thread Matthew Law
On Sun, 7 Mar 2004 11:29:38 -, Vivian Meazza [EMAIL PROTECTED] wrote: Thanks for that pointer. Unfortunately, it's the wrong Mark - IX I think from the canon armament, although some real expert will undoubtedly identify it instantly, and, more importantly, it doesn't show the underwing

Re: [Flightgear-devel] Spitfire Hurricane manuals

2004-03-07 Thread Lee Elliott
On Sunday 07 March 2004 10:40, Erik Hofman wrote: Vivian Meazza wrote: Erik Hofman wrote http://home.clara.net/wolverine/BOB/misc/Spit_Hurri_Manuals.zip Is this a hint ;-)? Yes. Erik LOL :))) I'm still re-working the A-10 atm - I've got a new 'bare-metal' finish .ac model but

Re: [Flightgear-devel] FlightGear talk at UseLinux, Boston, July 2004

2004-03-07 Thread David Culp
Suggestions for specific topics, as well as screenshots and photos, will enable me to structure the talk to fairly represent the project. There has been a lot of new AI stuff done recently, both David Luff's ATC and AI traffic, and the AI objects. Here are some screenshots of some AI

Re: [Flightgear-devel] Re: Spitfire Hurricane manuals

2004-03-07 Thread Rick Ansell
On Sun, 07 Mar 2004 14:11:59 -, Matthew Law [EMAIL PROTECTED] wrote: snip If you are modelling one of the carburettor-engined spitfires it would be nice if the engine cuts-out under negative G :-) All the best, Merlins or Griffins were both carb engines and there were therefore NO

[Flightgear-devel] MacOS X isnan() Fix

2004-03-07 Thread Jonathan Polley
The fix for the MacOS isnan problem didn't compile. I changed it to be inline int (isinf)(double r) { return isinf(r); } inline int (isnan)(double r) { return isnan(r); } and it worked just fine (it was Real r instead of double). Real wasn't defined. Thanks, Jonathan Polley