00001 //=========================================================================== 00002 /* 00003 This file is part of the GEL dynamics engine. 00004 Copyright (C) 2003-2009 by Francois Conti, Stanford University. 00005 All rights reserved. 00006 00007 \author <http://www.chai3d.org> 00008 \author Francois Conti 00009 \version 2.0.0 $Rev: 251 $ 00010 */ 00011 //=========================================================================== 00012 00013 //--------------------------------------------------------------------------- 00014 #ifndef CGELVertexH 00015 #define CGELVertexH 00016 //--------------------------------------------------------------------------- 00017 #include "CGELMassParticle.h" 00018 #include "CGELSkeletonLink.h" 00019 #include "CGELSkeletonNode.h" 00020 #include "chai3d.h" 00021 //--------------------------------------------------------------------------- 00022 00023 //=========================================================================== 00031 //=========================================================================== 00032 00033 //=========================================================================== 00042 //=========================================================================== 00043 class cGELVertex 00044 { 00045 public: 00046 00047 //----------------------------------------------------------------------- 00048 // CONSTRUCTOR & DESTRUCTOR: 00049 //----------------------------------------------------------------------- 00050 00052 cGELVertex(cVertex* a_vertex); 00053 00055 virtual ~cGELVertex(); 00056 00057 00058 //----------------------------------------------------------------------- 00059 // MEMBERS: 00060 //----------------------------------------------------------------------- 00061 00063 cVertex* m_vertex; 00064 00066 cGELMassParticle* m_massParticle; 00067 00069 cGELSkeletonLink* m_link; 00070 00072 cGELSkeletonNode* m_node; 00073 }; 00074 00075 //--------------------------------------------------------------------------- 00076 #endif 00077 //---------------------------------------------------------------------------