------------------------------------------------------------------------------ get position and size of the entire plot
| 1893 | //------------------------------------------------------------------------------ |
| 1894 | // get position and size of the entire plot |
| 1895 | int vtkParallelCoordinatesRepresentation::GetPositionAndSize(double* position, double* size) |
| 1896 | { |
| 1897 | if (!this->Xs) |
| 1898 | return 0; |
| 1899 | |
| 1900 | position[0] = this->Xs[0]; |
| 1901 | position[1] = this->YMin; |
| 1902 | |
| 1903 | size[0] = this->Xs[this->NumberOfAxes - 1] - this->Xs[0]; |
| 1904 | size[1] = this->YMax - this->YMin; |
| 1905 | return 1; |
| 1906 | } |
| 1907 | |
| 1908 | //------------------------------------------------------------------------------ |
| 1909 | // set position and size of the entire plot |
no outgoing calls
no test coverage detected