------------------------------------------------------------------------------
| 322 | |
| 323 | //------------------------------------------------------------------------------ |
| 324 | void vtkAxesActor::GetBounds(double bounds[6]) |
| 325 | { |
| 326 | const double* bds = this->GetBounds(); |
| 327 | bounds[0] = bds[0]; |
| 328 | bounds[1] = bds[1]; |
| 329 | bounds[2] = bds[2]; |
| 330 | bounds[3] = bds[3]; |
| 331 | bounds[4] = bds[4]; |
| 332 | bounds[5] = bds[5]; |
| 333 | } |
| 334 | |
| 335 | //------------------------------------------------------------------------------ |
| 336 | // Get the bounds for this Actor as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax). |