<div dir="ltr"><div><div><div>Hi Mike,<br><br></div>I have just done a quick experiement with the osgshadersexample and found the with one vertex I wouldn't see anything.  <br><br>With only a single vertex the bounding box would just be zero sized so the scaling of the camera would likely be a bit off as well as small feature culling wanting to cull this drawable as it would percieve it to be an invisibly small point. To test possibility out I added the line:<br><br>        setInitialBound(osg::BoundingBox(0.0f,0.0f,0.0f,1.0f,1.0f,1.0f));<br><br></div>After the set up of the geometry to force the bounding box to a sensible initial size and then it works fine with just a single vertex.  Ideally you'd set the size that the geometry could end up once you apply the vertex/geometry shader modifications so that culling can properly take into account the range the geometry could end up in.<br></div><div><br></div><div>Another approach is you can disable the small feature culling by setting the culling mode to just use the frustum sides (or other modes without SMALL_FEATURE_CULLING see include/osg/CullSettings for details):<br></div><div><br></div><div>    viewer.getCamera()->setCullingMode(osg::CullSettings::VIEW_FRUSTUM_SIDES_CULLING);</div><div><br></div><div>You'd also need to set the camera home position as well, but given you will likely have other elements in a real scene graph this is likely not required.</div><div><br></div><div>The setInitalBound() or using your own ComputeBoundCallback is probably the most general helpful way to handle position modifications, the Camera settings are really just high level workarounds to this special case of a zero sized scene graph.<br></div><div><br></div><div>Robert.<br></div><div><div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 12 September 2017 at 16:12, Mike Greene <span dir="ltr"><<a href="mailto:mgreene@hiwaay.net" target="_blank">mgreene@hiwaay.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
In reference to the osggeometryshaders example, I have a question about a seeming problem when only passing one point to the geometry shader:<br>
<br>
If I comment out all but the first push back:<br>
<br>
Code:<br>
osg::Vec3Array* vAry = new osg::Vec3Array;<br>
setVertexArray( vAry );<br>
vAry->push_back( osg::Vec3(0,0,0) );<br>
/*vAry->push_back( osg::Vec3(0,1,0) );<br>
vAry->push_back( osg::Vec3(1,0,0) );<br>
vAry->push_back( osg::Vec3(1,1,0) );<br>
vAry->push_back( osg::Vec3(0,0,1) );<br>
vAry->push_back( osg::Vec3(0,1,1) );<br>
vAry->push_back( osg::Vec3(1,0,1) );<br>
vAry->push_back( osg::Vec3(1,1,1) );*/<br>
<br>
<br>
<br>
<br>
Nothing shows up. But if I do two, three or more points, every thing works fine. It seems a minimum of two points in the DrawArrays array is required?<br>
<br>
Thank you!<br>
<br>
Cheers,<br>
Mike[/code]<br>
<br>
------------------<br>
Read this topic online here:<br>
<a href="http://forum.openscenegraph.org/viewtopic.php?p=71697#71697" rel="noreferrer" target="_blank">http://forum.openscenegraph.<wbr>org/viewtopic.php?p=71697#<wbr>71697</a><br>
<br>
<br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.<wbr>openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.<wbr>org/listinfo.cgi/osg-users-<wbr>openscenegraph.org</a><br>
</blockquote></div><br></div>