Re: [osg-users] AutoTransform and small feature culling

2008-10-28 Thread Robert Osfield
On Tue, Oct 28, 2008 at 1:14 PM, Peter Wraae Marino <[EMAIL PROTECTED]> wrote: > To our application we don't need our AutoTransform objects to be small > feature culled, so we > would like to ask is there a reason why there isn't a flag on all nodes to > enabled/disable small > feature culling? Be

[osg-users] AutoTransform and small feature culling

2008-10-28 Thread Peter Wraae Marino
Hi, We have searched the archive and already found a post about this subject: http://www.mail-archive.com/osg-users@lists.openscenegraph.org/msg15948.html First our build setup: OS: Windows (sorry robert) OSG: osg2.6.0 DELTA3D: 2.1.0 Ok,.. our problem is that AutoTransform nodes get culled and d

Re: [osg-users] AutoTransform and small feature culling again

2008-09-18 Thread Robert Osfield
Hi Fabien, Another workaround would be to set the culling off for the affected AutoTransform - by doing: transform->setCullingActive(false); This would have an small impact on cull traversal speed, but would at least ensure that the node is always traversed. Robert. On Thu, Sep 18, 2008 at 9

[osg-users] AutoTransform and small feature culling again

2008-09-18 Thread Fabien Lavignotte
I have been through an issue that has been discussed previously on the osg-users mailing list. I have put the previous discussion below (it was end of august). The culling traversal was never called on an AutoTransform with auto scale because of small feature culling. So Robert answers with three