------------------------------------------------------------------------------
| 1642 | |
| 1643 | //------------------------------------------------------------------------------ |
| 1644 | int vtkParallelCoordinatesRepresentation::ComputePointPosition(double* p) |
| 1645 | { |
| 1646 | if (p[0] < this->Xs[0]) |
| 1647 | return -1; |
| 1648 | |
| 1649 | for (int i = 1; i < this->NumberOfAxes; i++) |
| 1650 | { |
| 1651 | if (p[0] < this->Xs[i]) |
| 1652 | { |
| 1653 | return i - 1; |
| 1654 | } |
| 1655 | } |
| 1656 | return -1; |
| 1657 | } |
| 1658 | |
| 1659 | //------------------------------------------------------------------------------ |
| 1660 | int vtkParallelCoordinatesRepresentation::ComputeLinePosition(double* p1, double* p2) |
no outgoing calls
no test coverage detected