------------------------------------------------------------------------------
| 433 | |
| 434 | //------------------------------------------------------------------------------ |
| 435 | void vtkCubeAxesActor::SetLabelOffset(double offset) |
| 436 | { |
| 437 | this->LabelOffset = offset; |
| 438 | for (int i = 0; i < NUMBER_OF_ALIGNED_AXIS; i++) |
| 439 | { |
| 440 | this->XAxes[i]->SetLabelOffset(offset); |
| 441 | this->YAxes[i]->SetLabelOffset(offset); |
| 442 | this->ZAxes[i]->SetLabelOffset(offset); |
| 443 | } |
| 444 | |
| 445 | this->Modified(); |
| 446 | } |
| 447 | |
| 448 | //------------------------------------------------------------------------------ |
| 449 | void vtkCubeAxesActor::SetTitleOffset(double titleOffset[2]) |