Panda3D
 All Classes Functions Variables Enumerations
eggVertexAux.I
00001 // Filename: eggVertexAux.I
00002 // Created by:  jenes (15Nov11)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 
00016 ////////////////////////////////////////////////////////////////////
00017 //     Function: EggVertexAux::set_name
00018 //       Access: Published
00019 //  Description:
00020 ////////////////////////////////////////////////////////////////////
00021 INLINE void EggVertexAux::
00022 set_name(const string &name) {
00023   Namable::set_name(name);
00024 }
00025 
00026 ////////////////////////////////////////////////////////////////////
00027 //     Function: EggVertexAux::get_aux
00028 //       Access: Published
00029 //  Description: Returns the auxiliary data quadruple.
00030 ////////////////////////////////////////////////////////////////////
00031 INLINE const LVecBase4d &EggVertexAux::
00032 get_aux() const {
00033   return _aux;
00034 }
00035 
00036 ////////////////////////////////////////////////////////////////////
00037 //     Function: EggVertexAux::set_aux
00038 //       Access: Published
00039 //  Description: Sets the auxiliary data quadruple.
00040 ////////////////////////////////////////////////////////////////////
00041 INLINE void EggVertexAux::
00042 set_aux(const LVecBase4d &aux) {
00043   _aux = aux;
00044 }
 All Classes Functions Variables Enumerations