00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef COIN_SOTRANSFORMVEC3F_H
00021 #define COIN_SOTRANSFORMVEC3F_H
00022
00023 #include <Inventor/engines/SoSubEngine.h>
00024 #include <Inventor/engines/SoEngineOutput.h>
00025 #include <Inventor/fields/SoMFVec3f.h>
00026 #include <Inventor/fields/SoMFMatrix.h>
00027
00028 class COIN_DLL_API SoTransformVec3f : public SoEngine {
00029 typedef SoEngine inherited;
00030
00031 SO_ENGINE_HEADER(SoTransformVec3f);
00032
00033 public:
00034 static void initClass(void);
00035 SoTransformVec3f(void);
00036
00037 SoMFVec3f vector;
00038 SoMFMatrix matrix;
00039
00040 SoEngineOutput point;
00041 SoEngineOutput direction;
00042 SoEngineOutput normalDirection;
00043
00044 protected:
00045 virtual ~SoTransformVec3f();
00046
00047 private:
00048 virtual void evaluate(void);
00049 };
00050
00051 #endif // !COIN_SOTRANSFORMVEC3F_H