Why not use vectors?  std::vector< std::vector< osg::Vec3f > > vec3array;

or ideally, for instantiation/allocation efficiency, std::vector<
std::vector< *osg::Vec3f > >


Dusten

On Thu, Nov 20, 2008 at 12:46 PM, Ed <[EMAIL PROTECTED]> wrote:

> I need to create a 2Dimensional array of Vec3f.  I could do this the ol'
>
> osg::Vec3f **myArray
>
> way, but wasn't sure if that is the way it "should" be done, as opposed to
> osg::ref_ptr, etc.   The I thought, maybe there is already a class for
> 2Dimensional arrays...but I didn't find one.  Is there such a class?
>
> Ed
>
> _______________________________________________
> osg-users mailing list
> [email protected]
> http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org
>
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to