00001 00002 // DefaultShapeCreator.h // 00004 00005 #ifndef DEFAULTSHAPECREATOR_H 00006 #define DEFAULTSHAPECREATOR_H 00007 00008 #include "ShapeCreator.h" 00009 00010 namespace X3DTK { 00011 00014 00015 class DefaultShapeCreator : public ShapeCreator 00016 { 00017 public: 00019 DefaultShapeCreator(); 00021 virtual ~DefaultShapeCreator(); 00022 00024 SFNode createAppearance() const; 00026 SFNode createFillProperties() const; 00028 SFNode createLineProperties() const; 00030 SFNode createMaterial() const; 00032 SFNode createShape() const; 00033 }; 00034 00035 } 00036 00037 #endif