00001 00002 00003 00005 00006 00011 00016 00021 // BboxUpdaterRenderingVisitor.h // 00023 00024 #ifndef BBOXUPDATERRENDERINGVISITOR_H 00025 #define BBOXUPDATERRENDERINGVISITOR_H 00026 00027 #include "RenderingVisitor.h" 00028 #include "BboxUpdaterGlobalVariables.h" 00029 00030 namespace X3DTK { 00031 namespace X3D { 00032 00033 class Coordinate; 00034 class X3DGeometryNode; 00035 00037 00038 class BboxUpdaterRenderingVisitor : public RenderingVisitor 00039 { 00040 public: 00042 BboxUpdaterRenderingVisitor(); 00044 virtual ~BboxUpdaterRenderingVisitor(); 00045 00047 virtual void enterCoordinate(Coordinate *C) const; 00048 00050 virtual bool walkOnX3DGeometryNode(X3DGeometryNode *N, SFAbstractNode Child) const; 00051 00052 00053 protected: 00054 BboxUpdaterGlobalVariables *globalVariables; 00055 }; 00056 00057 } 00058 } 00059 00060 #endif