00001 00003 // Copyright 2004, SenseGraphics AB 00004 // 00005 // This file is part of H3D API. 00006 // 00007 // H3D API is free software; you can redistribute it and/or modify 00008 // it under the terms of the GNU General Public License as published by 00009 // the Free Software Foundation; either version 2 of the License, or 00010 // (at your option) any later version. 00011 // 00012 // H3D API is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with H3D API; if not, write to the Free Software 00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 // 00021 // A commercial license is also available. Please contact us at 00022 // www.sensegraphics.com for more information. 00023 // 00024 // 00028 // 00030 #ifndef __COORDBOUNDFIELD_H__ 00031 #define __COORDBOUNDFIELD_H__ 00032 00033 #include "H3DBoundedObject.h" 00034 #include "X3DCoordinateNode.h" 00035 00036 namespace H3D { 00037 00041 class H3DAPI_API CoordBoundField: 00042 public TypedField< H3DBoundedObject::SFBound, 00043 TypedSFNode< X3DCoordinateNode > > { 00044 protected: 00046 virtual void update(); 00047 }; 00048 } 00049 00050 00051 #endif
1.4.5