<div dir="ltr"><div><div><div>HI Erik,<br><br></div>The constructor takes a reference not a pointer so try:<br><br> osg::ref_ptr < osg::Vec3Array > pCopy = new osg::Vec3Array(*pVertexArray, osg::CopyOp::DEEP_COPY_ALL);<br><br></div>Noe the *.<br><br><br></div><div>Or use osg::clone() i.e.<br><br></div><div>  pCopy = osg::clone(pVertexArray->get());<br></div><div><br></div>Robert.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 20 August 2015 at 18:30, Erik Hensens <span dir="ltr"><<a href="mailto:ehensens@hunter.com" target="_blank">ehensens@hunter.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi everyone!<br>
<br>
I have a simple question but I just can't figure it out. What is the proper way to copy a Vec3Array? The code below is not right:<br>
<br>
<br>
Code:<br>
<br>
osg::ref_ptr < osg::Vec3Array > pVertexArray = new osg::Vec3Array;<br>
...<br>
osg::ref_ptr < osg::Vec3Array > pCopy = new osg::Vec3Array(pVertexArray, osg::CopyOp::DEEP_COPY_ALL);<br>
<br>
<br>
<br>
<br>
I get the compilation error below:<br>
<br>
<br>
Code:<br>
<br>
error : no matching function for call to 'osg::TemplateArray < osg::Vec3f, (osg::Array::Type)28u, 3, 5126 > ::TemplateArray(osg::ref_ptr<osg::TemplateArray < osg::Vec3f, (osg::Array::Type)28u, 3, 5126 > > &, osg::CopyOp::Options)'<br>
<br>
<br>
<br>
<br>
Thanks very much for your help!<br>
<br>
Cheers,<br>
Erik<br>
<br>
------------------<br>
Read this topic online here:<br>
<a href="http://forum.openscenegraph.org/viewtopic.php?p=64852#64852" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=64852#64852</a><br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div><br></div>