Panda3D
 All Classes Functions Variables Enumerations
eggVertexAux.I
1 // Filename: eggVertexAux.I
2 // Created by: jenes (15Nov11)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 
16 ////////////////////////////////////////////////////////////////////
17 // Function: EggVertexAux::set_name
18 // Access: Published
19 // Description:
20 ////////////////////////////////////////////////////////////////////
21 INLINE void EggVertexAux::
22 set_name(const string &name) {
23  Namable::set_name(name);
24 }
25 
26 ////////////////////////////////////////////////////////////////////
27 // Function: EggVertexAux::get_aux
28 // Access: Published
29 // Description: Returns the auxiliary data quadruple.
30 ////////////////////////////////////////////////////////////////////
31 INLINE const LVecBase4d &EggVertexAux::
32 get_aux() const {
33  return _aux;
34 }
35 
36 ////////////////////////////////////////////////////////////////////
37 // Function: EggVertexAux::set_aux
38 // Access: Published
39 // Description: Sets the auxiliary data quadruple.
40 ////////////////////////////////////////////////////////////////////
41 INLINE void EggVertexAux::
42 set_aux(const LVecBase4d &aux) {
43  _aux = aux;
44 }
This is the base class for all three-component vectors and points.
Definition: lvecBase4.h:1661
void set_aux(const LVecBase4d &aux)
Sets the auxiliary data quadruple.
Definition: eggVertexAux.I:42
const LVecBase4d & get_aux() const
Returns the auxiliary data quadruple.
Definition: eggVertexAux.I:32