Dot product operator
| 157 | |
| 158 | // Dot product operator |
| 159 | float dot(const Vector3 &v) const{ |
| 160 | return x * v.x + y * v.y + z * v.z; |
| 161 | } |
| 162 | |
| 163 | // Normalize the vector and return it |
| 164 | Vector3 normalize() { |
nothing calls this directly
no outgoing calls
no test coverage detected