|
From: James W. W. <os...@jw...> - 2007-06-01 16:29:14
|
On Jun 1, 2007, at 3:05 AM, Daniele Cavallini wrote: > If compile with mac os x I haven't problem. The new Renderer with > shadows seem work well, with windows xp I have some problem. > If I try to download with wincvs I don't download all file (For > example > Folder Hidden Line missing). > It is not a big problem because I can use file download into mac os x. > When I compile with visual studio 2005 there is an error: 'INFINITY' > undeclared identifier. > Can you help me? It looks like INFINITY is from C99, not C++... is there a C99 compatibility option you can turn on? INFINITY is only used in QOLights.cpp, right? You could try adding this #ifndef INFINITY #define INFINITY std::numeric_limits<float>::infinity() #endif in that file just after the #includes. > > > > > James W. Walker ha scritto: >> On May 31, 2007, at 1:29 AM, Daniele Cavallini wrote: >> >> >>> It is very interesting I would like to try it soon. Can I already >>> download it by cvs? >>> >> >> Yes. >> >> --------------------------------------------------------------------- >> ---- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> Quesa-develop mailing list >> Que...@li... >> https://lists.sourceforge.net/lists/listinfo/quesa-develop >> >> > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Quesa-develop mailing list > Que...@li... > https://lists.sourceforge.net/lists/listinfo/quesa-develop |