| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- // Filename: eggAttributes.I
- // Created by: drose (16Jan99)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // PANDA 3D SOFTWARE
- // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
- //
- // All use of this software is subject to the terms of the Panda 3d
- // Software license. You should have received a copy of this license
- // along with this source code; you will also find a current copy of
- // the license at http://etc.cmu.edu/panda3d/docs/license/ .
- //
- // To contact the maintainers of this program write to
- // [email protected] .
- //
- ////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::has_normal
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE bool EggAttributes::
- has_normal() const {
- return (_flags & F_has_normal) != 0;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::get_normal
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE const Normald &EggAttributes::
- get_normal() const {
- nassertr(has_normal(), _normal);
- return _normal;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::set_normal
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE void EggAttributes::
- set_normal(const Normald &normal) {
- _normal = normal;
- _flags |= F_has_normal;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::clear_normal
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE void EggAttributes::
- clear_normal() {
- _flags &= ~F_has_normal;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::matches_normal
- // Access: Published
- // Description: Returns true if this normal matches that of the other
- // EggAttributes object, include the morph list.
- ////////////////////////////////////////////////////////////////////
- INLINE bool EggAttributes::
- matches_normal(const EggAttributes &other) const {
- if (((_flags ^ other._flags) & F_has_normal) != 0) {
- return false;
- }
- if (!has_normal()) {
- return true;
- }
- return (get_normal() == other.get_normal() &&
- _dnormals.compare_to(other._dnormals) == 0);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::copy_normal
- // Access: Published
- // Description: Sets this normal to be the same as the other's,
- // include morphs. If the other has no normal, this
- // clears the normal.
- ////////////////////////////////////////////////////////////////////
- INLINE void EggAttributes::
- copy_normal(const EggAttributes &other) {
- if (!other.has_normal()) {
- clear_normal();
- } else {
- set_normal(other.get_normal());
- _dnormals = other._dnormals;
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::has_color
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE bool EggAttributes::
- has_color() const {
- return (_flags & F_has_color) != 0;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::get_color
- // Access: Published
- // Description: Returns the color set on this particular attribute.
- // If there is no color set, returns white.
- ////////////////////////////////////////////////////////////////////
- INLINE Colorf EggAttributes::
- get_color() const {
- if (has_color()) {
- return _color;
- } else {
- return Colorf(1.0, 1.0, 1.0, 1.0);
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE void EggAttributes::
- set_color(const Colorf &color) {
- _color = color;
- _flags |= F_has_color;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::
- // Access: Published
- // Description:
- ////////////////////////////////////////////////////////////////////
- INLINE void EggAttributes::
- clear_color() {
- _flags &= ~F_has_color;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::matches_color
- // Access: Published
- // Description: Returns true if this color matches that of the other
- // EggAttributes object, include the morph list.
- ////////////////////////////////////////////////////////////////////
- INLINE bool EggAttributes::
- matches_color(const EggAttributes &other) const {
- if (((_flags ^ other._flags) & F_has_color) != 0) {
- return false;
- }
- if (!has_color()) {
- return true;
- }
- return (get_color() == other.get_color() &&
- _drgbas.compare_to(other._drgbas) == 0);
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::copy_color
- // Access: Published
- // Description: Sets this color to be the same as the other's,
- // include morphs. If the other has no color, this
- // clears the color.
- ////////////////////////////////////////////////////////////////////
- INLINE void EggAttributes::
- copy_color(const EggAttributes &other) {
- if (!other.has_color()) {
- clear_color();
- } else {
- set_color(other.get_color());
- _drgbas = other._drgbas;
- }
- }
- ////////////////////////////////////////////////////////////////////
- // Function: EggAttributes::sorts_less_than
- // Access: Published
- // Description: An ordering operator to compare two vertices for
- // sorting order. This imposes an arbitrary ordering
- // useful to identify unique vertices.
- ////////////////////////////////////////////////////////////////////
- INLINE bool EggAttributes::
- sorts_less_than(const EggAttributes &other) const {
- return compare_to(other) < 0;
- }
|