------------------------------------------------------------------------------ get the value range of an axis
| 1844 | //------------------------------------------------------------------------------ |
| 1845 | // get the value range of an axis |
| 1846 | int vtkParallelCoordinatesRepresentation::GetRangeAtPosition(int position, double range[2]) |
| 1847 | { |
| 1848 | if (position < 0 || position >= this->NumberOfAxes) |
| 1849 | { |
| 1850 | return -1; |
| 1851 | } |
| 1852 | |
| 1853 | // int axis = this->AxisOrder[position]; |
| 1854 | range[0] = this->Mins[position] + this->MinOffsets[position]; |
| 1855 | range[1] = this->Maxs[position] + this->MaxOffsets[position]; |
| 1856 | |
| 1857 | return 1; |
| 1858 | } |
| 1859 | |
| 1860 | //------------------------------------------------------------------------------ |
| 1861 | // set the value range of an axis |
no outgoing calls
no test coverage detected