| 402 | } |
| 403 | |
| 404 | int TestLineIntersection(vtkMinimalStandardRandomSequence* seq, unsigned nTests) |
| 405 | { |
| 406 | if (TestLineIntersection_PositiveResult(seq, nTests) == EXIT_FAILURE) |
| 407 | { |
| 408 | return EXIT_FAILURE; |
| 409 | } |
| 410 | if (TestLineIntersection_NegativeResult(seq, nTests) == EXIT_FAILURE) |
| 411 | { |
| 412 | return EXIT_FAILURE; |
| 413 | } |
| 414 | if (TestLineIntersectionAbsTol_PositiveResult(seq, nTests) == EXIT_FAILURE) |
| 415 | { |
| 416 | return EXIT_FAILURE; |
| 417 | } |
| 418 | if (TestLineIntersectionAbsTol_NegativeResult(seq, nTests) == EXIT_FAILURE) |
| 419 | { |
| 420 | return EXIT_FAILURE; |
| 421 | } |
| 422 | if (TestLineIntersection_ColinearResult(seq, nTests) == EXIT_FAILURE) |
| 423 | { |
| 424 | return EXIT_FAILURE; |
| 425 | } |
| 426 | return EXIT_SUCCESS; |
| 427 | } |
| 428 | |
| 429 | int TestDistanceBetweenLines(vtkMinimalStandardRandomSequence* seq, unsigned nTests) |
| 430 | { |
no test coverage detected