00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
#ifndef COIN_SOLINEARPROFILE_H
00021
#define COIN_SOLINEARPROFILE_H
00022
00023
#include <Inventor/nodes/SoSubNode.h>
00024
#include <Inventor/nodes/SoProfile.h>
00025
00026
00027 class COIN_DLL_API SoLinearProfile :
public SoProfile {
00028
typedef SoProfile inherited;
00029
00030 SO_NODE_HEADER(SoLinearProfile);
00031
00032
public:
00033
static void initClass(
void);
00034 SoLinearProfile(
void);
00035
00036
virtual void getTrimCurve(
SoState * state, int32_t & numpoints,
00037
float *& points,
int & floatspervec,
00038 int32_t & numknots,
float *& knotvector);
00039
virtual void getVertices(
SoState * state, int32_t & numvertices,
00040
SbVec2f *& vertices);
00041
00042
protected:
00043
virtual ~SoLinearProfile();
00044 };
00045
00046
#endif // !COIN_SOLINEARPROFILE_H