00001 //============================================================================= 00002 // 00003 // OpenMesh 00004 // Copyright (C) 2001-2005 by Computer Graphics Group, RWTH Aachen 00005 // www.openmesh.org 00006 // 00007 //----------------------------------------------------------------------------- 00008 // 00009 // License 00010 // 00011 // This library is free software; you can redistribute it and/or modify it 00012 // under the terms of the GNU Library General Public License as published 00013 // by the Free Software Foundation, version 2. 00014 // 00015 // This library is distributed in the hope that it will be useful, but 00016 // WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 // Library General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU Library General Public 00021 // License along with this library; if not, write to the Free Software 00022 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00023 // 00024 //----------------------------------------------------------------------------- 00025 // 00026 // $Revision: 1.1.1.1 $ 00027 // $Date: 2004/09/06 12:34:56 $ 00028 // 00029 //============================================================================= 00030 00031 00038 #ifndef OPENMESH_ATTRIBUTES_HH 00039 #define OPENMESH_ATTRIBUTES_HH 00040 00041 00042 //== INCLUDES ================================================================= 00043 00044 00045 #include <OpenMesh/Core/System/config.hh> 00046 #include <OpenMesh/Core/Attributes/Status.hh> 00047 00048 00049 //== NAMESPACES =============================================================== 00050 00051 00052 namespace OpenMesh { 00053 namespace Attributes { 00054 00055 00056 //== CLASS DEFINITION ======================================================== 00057 00066 enum AttributeBits 00067 { 00068 None = 0, 00069 Normal = 1, 00070 Color = 2, 00071 PrevHalfedge = 4, 00072 Status = 8, 00073 TexCoord1D = 16, 00074 TexCoord2D = 32, 00075 TexCoord3D = 64 00076 }; 00077 00078 00079 //============================================================================= 00080 } // namespace Attributes 00081 } // namespace OpenMesh 00082 //============================================================================= 00083 #endif // OPENMESH_ATTRIBUTES_HH defined 00084 //=============================================================================