00001 /*************************************************************************** 00002 * billboard.h 00003 * 00004 * Sun Feb 1 12:12:39 2004 00005 * Copyright 2004 thierry schartz 00006 * thierry.schartz@bluebottle.com 00007 ****************************************************************************/ 00008 /* 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU Library General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 */ 00023 00024 #ifndef _BILLBOARD_H 00025 #define _BILLBOARD_H 00026 00027 #ifdef WIN32 00028 #include <windows.h> 00029 #endif 00030 00031 #include "object.h" 00032 #include "vector3d.h" 00033 00034 namespace ngn { 00035 00036 class Camera; 00037 00038 00046 class NGN_API Billboard : public Object3d 00047 { 00048 public: 00050 Billboard(); 00052 Billboard( const Billboard& other ); 00054 virtual ~Billboard(); 00056 void setDimensions( float w, float h ); 00058 float getRadius(); 00060 virtual void render( const Camera& cam ); 00061 00062 protected: 00064 virtual void computeCentre(); 00065 00066 private: 00067 float m_w, m_h; 00068 core::Vector3df m_min, m_max, m_previous_pos; 00069 00070 00071 }; 00072 00073 00074 }//ngn 00075 #endif /* _BILLBOARD_H */ 00076 00077 00078 00079