Robert, Mathias

Sure I am happy, if functionality stays the same . It is public code now. Everybody is welcome to fix the issues ;-) I trust your judgment here as I only can test the code on Windows. I noticed that other thread also refers to modification in my recent shadow submissions. Let me know if I may help somehow.

Wojtek

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

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

Reply via email to