Panda3D
eggVertexAux.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file eggVertexAux.I
10  * @author jenes
11  * @date 2011-11-15
12  */
13 
14 /**
15  *
16  */
17 INLINE void EggVertexAux::
18 set_name(const std::string &name) {
19  Namable::set_name(name);
20 }
21 
22 /**
23  * Returns the auxiliary data quadruple.
24  */
25 INLINE const LVecBase4d &EggVertexAux::
26 get_aux() const {
27  return _aux;
28 }
29 
30 /**
31  * Sets the auxiliary data quadruple.
32  */
33 INLINE void EggVertexAux::
34 set_aux(const LVecBase4d &aux) {
35  _aux = aux;
36 }
void set_aux(const LVecBase4d &aux)
Sets the auxiliary data quadruple.
Definition: eggVertexAux.I:34
const LVecBase4d & get_aux() const
Returns the auxiliary data quadruple.
Definition: eggVertexAux.I:26