00001 // Filename: materialAttrib.I 00002 // Created by: drose (04Mar02) 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: MaterialAttrib::Constructor 00018 // Access: Private 00019 // Description: Use MaterialAttrib::make() to construct a new 00020 // MaterialAttrib object. 00021 //////////////////////////////////////////////////////////////////// 00022 INLINE MaterialAttrib:: 00023 MaterialAttrib() { 00024 } 00025 00026 //////////////////////////////////////////////////////////////////// 00027 // Function: MaterialAttrib::is_off 00028 // Access: Published 00029 // Description: Returns true if the MaterialAttrib is an 'off' 00030 // MaterialAttrib, indicating that it should disable 00031 // the use of materials. 00032 //////////////////////////////////////////////////////////////////// 00033 INLINE bool MaterialAttrib:: 00034 is_off() const { 00035 return _material == (const Material *)NULL; 00036 } 00037 00038 //////////////////////////////////////////////////////////////////// 00039 // Function: MaterialAttrib::get_material 00040 // Access: Published 00041 // Description: If the MaterialAttrib is not an 'off' MaterialAttrib, 00042 // returns the material that is associated. Otherwise, 00043 // return NULL. 00044 //////////////////////////////////////////////////////////////////// 00045 INLINE Material *MaterialAttrib:: 00046 get_material() const { 00047 return _material; 00048 }