00001 00002 00003 00005 00006 00011 00016 00021 // DefaultGeometry3DCreator.h // 00023 00024 #ifndef DEFAULTGEOMETRY3DCREATOR_H 00025 #define DEFAULTGEOMETRY3DCREATOR_H 00026 00027 #include "Geometry3DCreator.h" 00028 00029 namespace X3DTK { 00030 namespace X3D { 00031 00034 00035 class DefaultGeometry3DCreator : public Geometry3DCreator 00036 { 00037 public: 00039 DefaultGeometry3DCreator(); 00041 virtual ~DefaultGeometry3DCreator(); 00042 00044 SFNode createBox() const; 00046 SFNode createCone() const; 00048 SFNode createCylinder() const; 00050 SFNode createIndexedFaceSet() const; 00052 SFNode createSphere() const; 00053 }; 00054 00055 } 00056 } 00057 00058 #endif