@{ * Pushes the current transformation onto the transformation stack. */
| 358 | * Pushes the current transformation onto the transformation stack. |
| 359 | */ |
| 360 | void Push() |
| 361 | { |
| 362 | if (this->Stack == nullptr) |
| 363 | { |
| 364 | this->Stack = vtkTransformConcatenationStack::New(); |
| 365 | } |
| 366 | this->Stack->Push(&this->Concatenation); |
| 367 | this->Modified(); |
| 368 | } |
| 369 | ///@} |
| 370 | |
| 371 | ///@{ |
no test coverage detected