| 905 | |
| 906 | template <typename VectorType> |
| 907 | VectorType vdiv(VectorType const& a, VectorType const& b) { |
| 908 | return a.piecewiseDivide(b); |
| 909 | } |
| 910 | |
| 911 | template <typename T> |
| 912 | Vector<T, 3> operator^(Vector<T, 3> v1, Vector<T, 3> v2) { |
no test coverage detected