Check if each component of this Vector is finite. @throws IllegalArgumentException if any component is not finite
()
| 811 | * @throws IllegalArgumentException if any component is not finite |
| 812 | */ |
| 813 | public void checkFinite() throws IllegalArgumentException { |
| 814 | NumberConversions.checkFinite(x, "x not finite"); |
| 815 | NumberConversions.checkFinite(y, "y not finite"); |
| 816 | NumberConversions.checkFinite(z, "z not finite"); |
| 817 | } |
| 818 | |
| 819 | /** |
| 820 | * Get the threshold used for equals(). |
no test coverage detected