71 lines
2.5 KiB
Plaintext
71 lines
2.5 KiB
Plaintext
// Filename: geomTransformer.I
|
|
// Created by: drose (14Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001, 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://www.panda3d.org/license.txt .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d@yahoogroups.com .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GeomTransformer::SourceVertices::Ordering Operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GeomTransformer::SourceVertices::
|
|
operator < (const GeomTransformer::SourceVertices &other) const {
|
|
if (_coords != other._coords) {
|
|
return _coords < other._coords;
|
|
}
|
|
return (_mat.compare_to(other._mat) < 0);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GeomTransformer::SourceNormals::Ordering Operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GeomTransformer::SourceNormals::
|
|
operator < (const GeomTransformer::SourceNormals &other) const {
|
|
if (_norms != other._norms) {
|
|
return _norms < other._norms;
|
|
}
|
|
return (_mat.compare_to(other._mat) < 0);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GeomTransformer::SourceTexCoords::Ordering Operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GeomTransformer::SourceTexCoords::
|
|
operator < (const GeomTransformer::SourceTexCoords &other) const {
|
|
if (_texcoords != other._texcoords) {
|
|
return _texcoords < other._texcoords;
|
|
}
|
|
return (_mat.compare_to(other._mat) < 0);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GeomTransformer::SourceColors::Ordering Operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GeomTransformer::SourceColors::
|
|
operator < (const GeomTransformer::SourceColors &other) const {
|
|
if (_colors != other._colors) {
|
|
return _colors < other._colors;
|
|
}
|
|
return (_scale.compare_to(other._scale) < 0);
|
|
}
|