30a06a033e
"Since we desperately needed a means for picking Lines and Points I implemented (hopefully!) proper geometrical tests for the PolytopeIntersector. First of all I implemented a new "GenericPrimiteFunctor" which is basically an extended copy TriangleFunctor which also handles Points, Lines and Quads through suitable overloads of operator(). I would have liked to call it "PrimitiveFunctor" but that name was already used... I used a template method to remove redundancy in the drawElements method overloads. If you know of platforms where this will not work I can change it to the style used in TriangleFunctor. In PolytopeIntersector.cpp I implemented a "PolytopePrimitiveIntersector" which provides the needed overloads for Points, Lines, Triangles and Quads to the GenericPrimitiveFunctor. This is then used in the intersect method of PolytopeIntersector. Implementation summary: - Points: Check distance to all planes - Lines: Check distance of both ends against each plane. If both are outside -> line is out If both are in -> continue checking One is in, one is out -> compute intersection point (candidate) Then check all candidates against all other polytope planes. The remaining candidates are the proper intersection points of the line with the polytope. - Triangles: Perform Line-Checks for all edges of the triangle as above. If there is an proper intersection -> done. In the case where there are more than 2 polytope plane to check against we have to check for the case where the triangle encloses the polytope. In that case the intersection lines of the polytope planes are computed and checked against the triangle. - Quads: handled as two triangles. This is implementation is certainly not the fastest. There are certainly ways and strategies to improve it. I also enabled the code for PolytopeIntersector in osgkeyboardmouse and added keybindings to switch the type of intersector ('p') and the picking coordinate system ('c') on the fly. Since the PolytopeIntersector does not have a canonical ordering for its intersections (as opposed to the LineSegementIntersector) I chaged the implementation to toggle all hit geometries. I tested the functionality with osgkeyboardmouse and several models and it seems to work for polygonal models. Special nodes such as billboards do not work. The next thing on my todo-list is to implement a an improved Intersection-Structure for the PolytopeIntersector. We need to know which primitives where hit (and where). " |
||
---|---|---|
.. | ||
osganimate | ||
osgautotransform | ||
osgbillboard | ||
osgblendequation | ||
osgcallback | ||
osgcamera | ||
osgcatch | ||
osgcegui | ||
osgclip | ||
osgcluster | ||
osgcopy | ||
osgcubemap | ||
osgdelaunay | ||
osgdepthpartition | ||
osgdepthshadow | ||
osgdistortion | ||
osgfadetext | ||
osgforest | ||
osgfxbrowser | ||
osggeodemo | ||
osggeometry | ||
osgGLUTkeyboardmouse | ||
osgGLUTsimple | ||
osghangglide | ||
osghud | ||
osgimpostor | ||
osgintersection | ||
osgintrospection | ||
osgkeyboard | ||
osgkeyboardmouse | ||
osglauncher | ||
osglight | ||
osglightpoint | ||
osglogicop | ||
osglogo | ||
osgmanipulator | ||
osgmotionblur | ||
osgmovie | ||
osgmultiplecameras | ||
osgmultitexture | ||
osgoccluder | ||
osgpagedlod | ||
osgparametric | ||
osgparticle | ||
osgparticleeffects | ||
osgphotoalbum | ||
osgpick | ||
osgplanets | ||
osgpoints | ||
osgpointsprite | ||
osgprecipitation | ||
osgprerender | ||
osgprerendercubemap | ||
osgreflect | ||
osgscalarbar | ||
osgscribe | ||
osgsequence | ||
osgshaders | ||
osgshaderterrain | ||
osgshadow | ||
osgshadowtexture | ||
osgshape | ||
osgsimple | ||
osgsimpleviewerCocoa | ||
osgsimpleviewerFLTK | ||
osgsimpleviewerGLUT | ||
osgsimpleviewerQT3 | ||
osgsimpleviewerQT4 | ||
osgsimpleviewerSDL | ||
osgsimpleviewerWX | ||
osgsimplifier | ||
osgsimulation | ||
osgslice | ||
osgspacewarp | ||
osgspheresegment | ||
osgspotlight | ||
osgstereoimage | ||
osgteapot | ||
osgterrain | ||
osgtessellate | ||
osgtext | ||
osgtexture1D | ||
osgtexture2D | ||
osgtexture3D | ||
osgtexturerectangle | ||
osgunittests | ||
osgvertexprogram | ||
osgviewerMFC | ||
osgvolume | ||
osgwindows | ||
CMakeLists.txt |