| 900 | data[index_z] *= t; |
| 901 | data[index_w] *= t; |
| 902 | return (*this); |
| 903 | } |
| 904 | |
| 905 | template <typename division_type> |
| 906 | Subvec4D& operator /=(const division_type& s) |
| 907 | { |
| 908 | data[index_x] /= s; |
nothing calls this directly
no outgoing calls
no test coverage detected