MCPcopy Create free account
hub / github.com/davideberly/GeometricTools / operator<

Method operator<

GTE/Mathematics/AlignedBox.h:98–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96 }
97
98 bool operator< (AlignedBox const& box) const
99 {
100 if (min < box.min)
101 {
102 return true;
103 }
104
105 if (min > box.min)
106 {
107 return false;
108 }
109
110 return max < box.max;
111 }
112
113 bool operator<=(AlignedBox const& box) const
114 {

Callers 2

operator<=Method · 0.45
operator>Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected