1 #ifndef COIN_SBTESSELATOR_H
2 #define COIN_SBTESSELATOR_H
27 #include <Inventor/SbBasic.h>
28 #include <Inventor/tools/SbPimplPtr.h>
29 #include <Inventor/SbVec3f.h>
32 typedef void SbTesselatorCB(
void * v0,
void * v1,
void * v2,
void * data);
36 SbTesselator(SbTesselatorCB * func = NULL,
void * data = NULL);
39 void beginPolygon(SbBool keepVertices = FALSE,
41 void addVertex(
const SbVec3f &v,
void * data);
42 void endPolygon(
void);
43 void setCallback(SbTesselatorCB * func,
void * data);
47 SbPimplPtr<PImpl> pimpl;
54 #endif // !COIN_SBTESSELATOR_H
The SbTesselator class is used to tessellate polygons into triangles.SbTesselator is used within Coin...
Definition: SbTesselator.h:34
The SbVec3f class is a 3 dimensional vector with floating point coordinates.This vector class is used...
Definition: SbVec3f.h:40