SbClip   (3) manpage
SbClip
3
24 Jun 2004
Version 2.3.0
Coin
\"
-*-
nroff
-*-
  • NAME
      SbClip -
  • SYNOPSIS



      #include <include/Inventor/base/SbClip.h>

  • Detailed Description


      The SbClip class is a generic polygon clipper class.
      It is used by first adding all vertices in the polygon, and then clipping against any number of planes. If you need to supply additional information per vertex (e.g. texture coordinates), you should supply a callback in the constructor, and a pointer to your vertex structure in addVertex(). For every new vertex created, the callback is called with the line being clipped, including the pointers to your vertex structures and the position of the new (clipped against some plane) vertex. You should then create a new vertex structure, calculate your data (e.g. a new texture coordinate) and return a pointer to this structure.

      Be aware that this class is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API.

      Since:
      Coin 2.0





      "Public Member Functions"
      \fBSbClip\fP (SbClipCallback *callback=NULL, void *userdata=NULL)
      void \fBaddVertex\fP (const \fBSbVec3f\fP &v, void *vdata=NULL)
      void \fBreset\fP (void)
      void \fBclip\fP (const \fBSbPlane\fP &plane)
      int \fBgetNumVertices\fP (void) const
      void \fBgetVertex\fP (const int idx, \fBSbVec3f\fP &v, void **vdata=NULL) const
      void * \fBgetVertexData\fP (const int idx) const
  • Constructor & Destructor Documentation


      "SbClip::SbClip (SbClipCallback * callback = NULL, void * userdata = NULL)"

      A constructor. Supply a callback if you need to handle additional data per vertex.
  • Member Function Documentation


      "void SbClip::addVertex (const SbVec3f & v, void * vdata = NULL)"

      Adds a polygon vertex. vdata could be a pointer to your vertex structure. "void SbClip::reset (void)"

      Resets the clipper. This should be called before adding any vertices. "void SbClip::clip (const SbPlane & plane)"

      Clip polygon against plane. This might change the number of vertices in the polygon. For each time a new vertex is created, the callback supplied in the constructor (if != NULL) is called with the line being clipped and the new vertex calculated. The callback should return a new void pointer to be stored by the clipper. "int SbClip::getNumVertices (void) const"

      Returns the number of vertices in the polygon.

      See also:
      SbClip::getVertex()



      "void SbClip::getVertex (const int idx, SbVec3f & v, void ** vdata = NULL) const"

      Returns the vertex at index idx.

      See also:
      SbClip::getNumVertices()



      "void * SbClip::getVertexData (const int idx) const"

      Return the vertex data at index idx.
  • Author


      Generated automatically by Doxygen for Coin from the source code.
Current Users: 31 © 1999-2006 Linux.com.hk PenguinSoft
All trademarks and copyrights on this page are owned by their respective companies. Linux is a trademark of Linus Torvalds.