Hi Wojtek,

All you need to review is the changes I made:

   http://www.openscenegraph.org/projects/osg/changeset/9009

Which boilds down to replacing:

    face.vertices.insert( face.vertices.begin(), vertices.begin(),
vertices.end() );

By:

   std::copy(vertices.begin(), vertices.end(),
std::back_inserter(face.vertices));

If you are happy with this change then we are good to go:-)

Robert.
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to