00001 #include "X3DTextureNode.h" 00002 00003 #include <iostream> 00004 00005 using namespace X3DTK; 00006 using namespace std; 00007 00008 X3DTextureNode::X3DTextureNode() 00009 : X3DAppearanceChildNode() 00010 { 00011 defineTagName("X3DTextureNode", "Texturing"); 00012 } 00013 00014 X3DTextureNode::X3DTextureNode(const X3DTextureNode &N) 00015 : X3DAppearanceChildNode(N) 00016 { 00017 defineTagName("X3DTextureNode", "Texturing"); 00018 } 00019 00020 SFNode X3DTextureNode::clone() const 00021 { 00022 return 0; 00023 } 00024 00025 X3DTextureNode::~X3DTextureNode() 00026 { 00027 }