Re: [osg-users] XPath in osg

2008-07-02 Thread David Johansson
Serge, Thanks for the tip. I'll give that a shot. David On Tue, Jul 1, 2008 at 6:40 PM, Serge Lages [EMAIL PROTECTED] wrote: Hi David, Instead of including it into the Core OSG, a possible addition should be a XPath visitor class (deriving from NodeVisitor) into osgUtil, which takes the

Re: [osg-users] XPath in osg

2008-07-02 Thread Cedric Pinson
I would lovee a visitor like that very much ! :) David Johansson wrote: Serge, Thanks for the tip. I'll give that a shot. David On Tue, Jul 1, 2008 at 6:40 PM, Serge Lages [EMAIL PROTECTED] wrote: Hi David, Instead of including it into the Core OSG, a possible addition should be a

[osg-users] XPath in osg

2008-07-01 Thread David Johansson
Hi everyone, I was wondering if there are any plans on adding some sort of search-querys into osg, XPath for example? Something like: osg::Node* n = Group-SelectSingleNode(//[EMAIL PROTECTED]node1\]); std::vectorosg::Node* nodeList = Group-SelectMultipleNodes(/[EMAIL PROTECTED]somethingelse\);

Re: [osg-users] XPath in osg

2008-07-01 Thread Serge Lages
Hi David, Instead of including it into the Core OSG, a possible addition should be a XPath visitor class (deriving from NodeVisitor) into osgUtil, which takes the query and traverse the tree to get the results. I think it's a bit intrusive to put such a feature into the core node class, and