diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kpovmodeler/pmface.h | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmface.h')
-rw-r--r-- | kpovmodeler/pmface.h | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/kpovmodeler/pmface.h b/kpovmodeler/pmface.h new file mode 100644 index 00000000..46da64bb --- /dev/null +++ b/kpovmodeler/pmface.h @@ -0,0 +1,130 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2004 by Leon Pennington + email : [email protected] +************************************************************************** + +************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +**************************************************************************/ +#ifndef PMFACE_H +#define PMFACE_H + +#include <qptrlist.h> +#include <qvaluevector.h> +#include <GL/gl.h> +#include "pmdebug.h" +#include "pmvector.h" + +/** + * face to display with index of points. Points must be in clockwise order. + * + * Face of a @ref PMViewStructure. Only the indices in a @ref PMPointArray + * are stored. + * + * Optimized for OpenGL + */ +class PMFace +{ +public: + /** + * Default constructor + */ + PMFace( ) + { + m_points = 0; + m_size = 0; + } + /** + * Copy Constructor + */ + PMFace( const PMFace& face ); + /** + * Destructor + */ + ~PMFace( ) { delete m_points; } + /** + * Creates a face with three points. + */ + PMFace( const GLuint pt1, const GLuint pt2, const GLuint pt3, const PMVector& normal = PMVector() ); + /** + * Creates a face with four points. + */ + PMFace( const GLuint pt1, const GLuint pt2, const GLuint pt3, const GLuint pt4, const PMVector& normal = PMVector() ); + + /** + * Operator assignment + */ + PMFace& operator=( const PMFace& face ); + /** + * Operator equals + */ + bool operator==( const PMFace& face ) const; + /** + * Operator unequals + */ + bool operator!=( const PMFace& face ) const; + + /** + * Resizes the number of points in the face. + * @return True if successful + */ + bool resize( const unsigned int size ); + /** + * @return The number of points in the face. + */ + unsigned int size( ) const { return m_size; } + + /** + * Returns a reference to a point in the face + */ + GLuint& operator[] ( int index ); + /** + * Returns a const reference to a point in the face + */ + const GLuint& operator[] ( int index ) const; + + /** + * Calculates the normal for the face + */ + void setNormal( const PMVector& normal ) { m_normal = normal; } + /** + * Returns the normal for the face + */ + PMVector normal( ) const { return m_normal; } + +private: + /** + * The face points (indices!) + */ + GLuint* m_points; + /** + * The number of points in the face + */ + unsigned int m_size; + /** + * The normal of the face, calculated automatically + */ + PMVector m_normal; + static GLuint s_dummy; +}; + +typedef QPtrListIterator<PMFace> PMFaceListIterator; + +/** + * A list of @ref PMFace objects. + * + * This class stores all faces of a @ref PMViewStructure. Only the indices + * in a @ref PMPointArray are stored. + */ +typedef QValueVector<PMFace> PMFaceArray; + +#endif |