Panda3D
Loading...
Searching...
No Matches
mayaEggGroupUserData.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 mayaEggGroupUserData.I
10 * @author drose
11 * @date 2003-06-03
12 */
13
14/**
15 *
16 */
17INLINE MayaEggGroupUserData::
18MayaEggGroupUserData() {
19 _vertex_color = false;
20 _double_sided = false;
21}
22
23
24/**
25 *
26 */
27INLINE MayaEggGroupUserData::
28MayaEggGroupUserData(const MayaEggGroupUserData &copy) :
29 EggUserData(copy),
30 _vertex_color(copy._vertex_color),
31 _double_sided(copy._double_sided)
32{
33}
34
35
36/**
37 *
38 */
39INLINE void MayaEggGroupUserData::
40operator = (const MayaEggGroupUserData &copy) {
41 EggUserData::operator = (copy);
42 _vertex_color = copy._vertex_color;
43 _double_sided = copy._double_sided;
44}
This is a base class for a user-defined data type to extend egg structures in processing code.
Definition eggUserData.h:29
This class contains extra user data which is piggybacked onto EggGroup objects for the purpose of the...