Panda3D
 All Classes Functions Variables Enumerations
eggTriangleFan.I
00001 // Filename: eggTriangleFan.I
00002 // Created by:  drose (23Mar05)
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: EggTriangleFan::Constructor
00018 //       Access: Published
00019 //  Description:
00020 ////////////////////////////////////////////////////////////////////
00021 INLINE EggTriangleFan::
00022 EggTriangleFan(const string &name) : EggCompositePrimitive(name) {
00023 }
00024 
00025 ////////////////////////////////////////////////////////////////////
00026 //     Function: EggTriangleFan::Copy constructor
00027 //       Access: Published
00028 //  Description:
00029 ////////////////////////////////////////////////////////////////////
00030 INLINE EggTriangleFan::
00031 EggTriangleFan(const EggTriangleFan &copy) : EggCompositePrimitive(copy) {
00032 }
00033 
00034 ////////////////////////////////////////////////////////////////////
00035 //     Function: EggTriangleFan::Copy assignment operator
00036 //       Access: Published
00037 //  Description:
00038 ////////////////////////////////////////////////////////////////////
00039 INLINE EggTriangleFan &EggTriangleFan::
00040 operator = (const EggTriangleFan &copy) {
00041   EggCompositePrimitive::operator = (copy);
00042   return *this;
00043 }
 All Classes Functions Variables Enumerations