| 660 | } |
| 661 | |
| 662 | bool IsInexistent(const float *pArray, const int Count) |
| 663 | { |
| 664 | for(int i = 0; i < Count; i++) |
| 665 | if(pArray[i] == std::numeric_limits<float>::max()) |
| 666 | return true; |
| 667 | return false; |
| 668 | } |
no outgoing calls
no test coverage detected