22 INLINE
bool ObjToEggConverter::VertexEntry::
23 operator < (
const VertexEntry &other)
const {
24 if (_vi != other._vi) {
25 return _vi < other._vi;
27 if (_vti != other._vti) {
28 return _vti < other._vti;
34 if (_vni != other._vni) {
35 return _vni < other._vni;
37 if (_synth_vni != other._synth_vni) {
38 return _synth_vni < other._synth_vni;
48 INLINE
bool ObjToEggConverter::VertexEntry::
49 operator == (
const VertexEntry &other)
const {
50 return (_vi == other._vi && _vti == other._vti &&
51 _vni == other._vni && _synth_vni == other._synth_vni);
60 INLINE
bool ObjToEggConverter::VertexEntry::
61 matches_except_normal(
const VertexEntry &other)
const {
62 return (_vi == other._vi && _vti == other._vti);