| 212 | } |
| 213 | |
| 214 | float Float3::operator[](unsigned int idx) const |
| 215 | { |
| 216 | assert(idx < 3); |
| 217 | return *(&x + idx); |
| 218 | } |
| 219 | |
| 220 | Float3& Float3::operator+=(const Float3& other) |
| 221 | { |
nothing calls this directly
no outgoing calls
no test coverage detected