17 INLINE
bool ObjToEggConverter::VertexEntry::
18 operator < (
const VertexEntry &other)
const {
19 if (_vi != other._vi) {
20 return _vi < other._vi;
22 if (_vti != other._vti) {
23 return _vti < other._vti;
28 if (_vni != other._vni) {
29 return _vni < other._vni;
31 if (_synth_vni != other._synth_vni) {
32 return _synth_vni < other._synth_vni;
40 INLINE
bool ObjToEggConverter::VertexEntry::
41 operator == (
const VertexEntry &other)
const {
42 return (_vi == other._vi && _vti == other._vti &&
43 _vni == other._vni && _synth_vni == other._synth_vni);
50 INLINE
bool ObjToEggConverter::VertexEntry::
51 matches_except_normal(
const VertexEntry &other)
const {
52 return (_vi == other._vi && _vti == other._vti);