[osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread hesicong2006
Hi, Robert: You added setClearDepth function to camera last few days, it works very fine with ordinary camera. But when I try to setClearDepth with a RTT camera, it does work. To reproduce this BUG, I take latest SVN version of osgprerender.cpp example to show you. I add

Re: [osg-users] osgDB::writeNodeFile with derived node types

2008-05-24 Thread Robert Osfield
On Fri, May 23, 2008 at 9:47 PM, Paul Martz [EMAIL PROTECTED] wrote: Along the same line, what I'd like to see at some point in the future would be an equivalent extension mechanism for .ive. Right now, the only solution is to own your own .ive plugin. More generally, it'd be nice to have an

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread Robert Osfield
Hi Hesicong, Seems I missed adding a few RenderStage::setClear*() to CullVisitor::apply(Camera). These are now added and checked into SVN. Could you let me know if things now work fine for you. Robert. On Sat, May 24, 2008 at 7:32 AM, hesicong2006 [EMAIL PROTECTED] wrote: Hi, Robert: You

Re: [osg-users] VPB creating earth model with using GTOPO30 data.

2008-05-24 Thread Robert Osfield
Hi Umit, On Fri, May 23, 2008 at 7:36 PM, ümit uzun [EMAIL PROTECTED] wrote: Sorry for late reply because of my school exams. I have tried gdalinfo E020N90.DEM -mm pattern and result is like this; ... Min=-.000 Max=5483.000 Computed Min/Max=1.000,65535.000 Minimum=-.000,

Re: [osg-users] Too much support!!!!! (UNCLASSIFIED)

2008-05-24 Thread Robert Osfield
Hi Mike, We moved to Tracs wiki less than a year ago, after considering various possibilities on the replacement of PmWiki. MediaWiki was one that was looked at but discounted. For development projects Tracs adds useful facilities that tools like MediaWiki don't provide. As for editing, you

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread hesicong2006
OK, it works. BTW, osgscreencapture.cpp can't compile, it says GL_STREAM_READ not defined! Robert Osfield wrote: Hi Hesicong, Seems I missed adding a few RenderStage::setClear*() to CullVisitor::apply(Camera). These are now added and checked into SVN. Could you let me know if things now

Re: [osg-users] Too much support!!!!!

2008-05-24 Thread Robert Osfield
Too much support T many replies ;-) Wow 13 messages in a thread within an hour or two of posting the message. It looks like more replies to this thread than to any of the others threads bubbling along on osg-users right now, which perhaps is symptom of the problem. Thanks to those

Re: [osg-users] website has broken reference guide links

2008-05-24 Thread Paul Melis
The links with /pmwiki.php in them refer to the previous version of the OSG website (running pmwiki). It's unfortunate that Google still has links to those pages. But it's even more unfortunate that it is still online... Start from www.openscenegraph.org and try to search on your subject their

[osg-users] Remove old wiki from Google?

2008-05-24 Thread Paul Melis
It seems the old pmwiki is still being indexed by Google. Isn't time to clean this up? Currently searching for openscenegraph download returns as top hit the download page for 2.0 on the previous wiki! I seem to recall that Google has an option to retire a set of URLs from their database.

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread Robert Osfield
On Sat, May 24, 2008 at 9:45 AM, hesicong2006 [EMAIL PROTECTED] wrote: OK, it works. BTW, osgscreencapture.cpp can't compile, it says GL_STREAM_READ not defined! Pesky windows headers... Could you try an svn update to see if the #define's I've added solve things. Robert.

Re: [osg-users] website has broken reference guide links

2008-05-24 Thread Stephan Huber
Paul Melis schrieb: The links with /pmwiki.php in them refer to the previous version of the OSG website (running pmwiki). It's unfortunate that Google still has links to those pages. But it's even more unfortunate that it is still online... Is there a chance to update the robots.txt file, so

[osg-users] How to control Animation Speed?

2008-05-24 Thread xyc508
Hello,all I build a model with animation in it use 3ds max,but in osg application(Load the model .ive as a node),the animation's speed is too fast, I want use language to set it's speed down, could anyone tell how to control Animation Speed ?Thanks. Regards

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread hesicong2006
But, another problem. After fix setClearDepth problem, RTT camera setClearColor doesn't work!!! I modified osgprerender.cpp line 319, from camera-setClearColor(osg::Vec4(0.1f,0.1f,0.3f,1.0f)); to camera-setClearColor(osg::Vec4(1,0,0,1)); but the background color do not change. Please check

Re: [osg-users] website has broken reference guide links

2008-05-24 Thread Paul Melis
Stephan Huber wrote: Paul Melis schrieb: The links with /pmwiki.php in them refer to the previous version of the OSG website (running pmwiki). It's unfortunate that Google still has links to those pages. But it's even more unfortunate that it is still online... Is there a chance to

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread hesicong2006
I just change line 1308 and 1312 to previous version and things works ok. I don't know why you switch the two lines. I attached my version of CullVisitor. hesicong2006 wrote: But, another problem. After fix setClearDepth problem, RTT camera setClearColor doesn't work!!! I modified

Re: [osg-users] OSG 2.5 and cmake

2008-05-24 Thread Philip Lowman
On Wed, May 21, 2008 at 10:50 AM, [EMAIL PROTECTED] wrote: Sorry if this has come up before... I'm attempting to compile OSG 2.5 and when I do the ./configure, I get: CMake Error: Error in cmake code at /OSG_PATH/OSG_OP_OT-2.5/OpenSceneGraph-2.5.0/CMakeLists.txt:214: INCLUDE Could not find

[osg-users] RE : Re: osg::ref_ptr difficulties

2008-05-24 Thread Franclin Foping
Hi, I have described referenced pointers in depth in my tutorials published on the official wiki. Have a look at the dedicated tutorial and let me know if you are still stuck! Franclin. Peter Hrenka [EMAIL PROTECTED] a écrit : Hi Vincent, Vincent Bourdier schrieb: Hi all, I'm making some

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread hesicong2006
But, another problem. After fix setClearDepth problem, RTT camera setClearColor doesn't work!!! I modified osgprerender.cpp line 319, from camera-setClearColor(osg::Vec4(0.1f,0.1f,0.3f,1.0f)); to camera-setClearColor(osg::Vec4(1,0,0,1)); but the background color do not change. Please check

Re: [osg-users] BUG: RTT camera setClearDepth function doesn't work

2008-05-24 Thread hesicong2006
But, another problem. After fix setClearDepth problem, RTT camera setClearColor doesn't work!!! I modified osgprerender.cpp line 319, from camera-setClearColor(osg::Vec4(0.1f,0.1f,0.3f,1.0f)); to camera-setClearColor(osg::Vec4(1,0,0,1)); but the background color do not change. I just change

[osg-users] How to control Animation in .ive speed?

2008-05-24 Thread xyc508
Hello,all I build a model with animation use 3ds max,export as a .ive file,loaded in osg application as a node,but the animation is too fast,could any tell how to control it's speed or give any help? Thanks. Regards Donlin___ osg-users mailing list