| 779 | |
| 780 | template <typename T> |
| 781 | static void |
| 782 | setElementWithUnity(T *p, int vectorLength) |
| 783 | { |
| 784 | p[0] = (T)1.0; |
| 785 | if ( vectorLength == 2) |
| 786 | { |
| 787 | p[1] = 0.0f; |
| 788 | } |
| 789 | } |
| 790 | |
| 791 | |
| 792 | template <typename T> |
no outgoing calls
no test coverage detected