Page principale | Hiérarchie des classes | Liste alphabétique | Liste des classes | Liste des fichiers | Membres de classe

C:/Projects/ngn/include/rect.h

00001 /***************************************************************************
00002  *            rect.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 _RECT_H
00025 #define _RECT_H
00026 
00027 #ifdef WIN32
00028 #include <windows.h>
00029 #endif
00030 
00031 
00032 #include "object.h"
00033 #include "vector2d.h"
00034 
00035 namespace ngn {
00036 
00037 
00038 
00043         class NGN_API Rect : public Object2d
00044         {
00045         public:
00046                 Rect();
00047                 Rect( const Rect& other );
00049                 Rect( const core::Vector2df vx0, const core::Vector2df vx1 );
00051                 Rect( float x0, float y0, float x1, float y1 );
00053                 virtual void render();
00054 
00055         private:
00056                 core::Vector2df m_vx0;
00057                 core::Vector2df m_vx1;
00058         };
00059 
00060 
00061 
00062 
00063 }//ngn
00064 #endif /* _RECT_H */
00065 

Généré le Fri Nov 19 14:20:29 2004 pour NGN par  doxygen 1.3.9.1