The soconvexdatacache class is used to cache convexified polygons. soconvexdatacache is used to speed up rendering of concave polygons by tessellating all polygons into triangles and storing the newly generated primitives in an internal cache.
#include <Inventor/caches/SoConvexDataCache.h>
Inherits SoCache.
enum Binding { NONE = 0, PER_FACE, PER_FACE_INDEXED, PER_VERTEX, PER_VERTEX_INDEXED }
The Binding enum is used to specify bindings.
SoConvexDataCache (SoState *const state)
virtual ~SoConvexDataCache ()
void generate (const SoCoordinateElement *const coords, const SbMatrix &matrix, const int32_t *coordindices, const int numcoordindices, const int32_t *matindices, const int32_t *normindices, const int32_t *texindices, const Binding matbinding, const Binding normbinding, const Binding texbinding)
const int32_t * getCoordIndices (void) const
int getNumCoordIndices (void) const
const int32_t * getMaterialIndices (void) const
int getNumMaterialIndices (void) const
const int32_t * getNormalIndices (void) const
int getNumNormalIndices (void) const
const int32_t * getTexIndices (void) const
int getNumTexIndices (void) const
The SoConvexDataCache class is used to cache convexified polygons.
SoConvexDataCache is used to speed up rendering of concave polygons by tessellating all polygons into triangles and storing the newly generated primitives in an internal cache.
This class is not part of the original SGI Open Inventor v2.1 API, but is a Coin extension.
The Binding enum is used to specify bindings. Binding applies to normals, materials and texture coordinates.
Constructor with state being the current state.
Destructor.
Generates the convexified data. FIXME: doc
Returns a pointer to the convexified coordinate indices.
See also:
SoConvexDataCache::getNumCoordIndices()
Returns the number of coordinate indices.
See also:
SoConvexDataCache::getCoordIndices()
Returns the convexified material indices.
See also:
SoConvexDataCache::getNumMaterialIndices()
Returns the number of material indices.
See also:
SoConvexDataCache::getMaterialIndices()
Returns the convexified normal indices.
See also:
SoConvexDataCache::getNumNormalIndices()
Returns the number of normal indices.
See also:
SoConvexDataCache::getNormalIndices()
Returns the convexified texture coordinate indices.
See also:
SoConvexDataCache::getNumTexIndices()
Returns the number of texture coordinate indices.
See also:
SoConvexDataCache::getTexIndices()
Generated automatically by Doxygen for Coin from the source code.