[osg-users] Is there a way to use a lump of user created memory with Vec3Arrays or other osg Vec Arrays

2008-07-31 Thread Gordon Tomlinson
Ok I know I'm reaching and hoping here ;) typically with say Vec3Array you populate along the lines of osg::ref_ptrosg::Vec3Array verts = new osg::Vec3Array; verts-push_back(1, 1, 1 )); etc Now I have a situation / need were we have and are still developing a system to manage generic data

Re: [osg-users] Is there a way to use a lump of user created memory with Vec3Arrays or other osg Vec Arrays

2008-07-31 Thread Jason Beverage
Hi Gordon, I've never attempted to do what you are describing, but I believe the osgsharedarray example is close to what you are trying to do if you want to check that out for inspiration. Good luck! Jason On Thu, Jul 31, 2008 at 3:41 PM, Gordon Tomlinson [EMAIL PROTECTED] wrote: Ok I know