| 107 | } |
| 108 | |
| 109 | bool VecContainsOne(const float* v, int size) |
| 110 | { |
| 111 | for(int i=0; i<size; ++i) |
| 112 | { |
| 113 | if(IsScalarEqualToOne(v[i])) return true; |
| 114 | } |
| 115 | return false; |
| 116 | } |
| 117 | |
| 118 | double ClampToNormHalf(double val) |
| 119 | { |
nothing calls this directly
no test coverage detected