@{ * Pushes the current transformation onto the transformation stack. */
| 337 | * Pushes the current transformation onto the transformation stack. |
| 338 | */ |
| 339 | void Push() |
| 340 | { |
| 341 | if (this->Stack == nullptr) |
| 342 | { |
| 343 | this->Stack = vtkTransformConcatenationStack::New(); |
| 344 | } |
| 345 | this->Stack->Push(&this->Concatenation); |
| 346 | this->Modified(); |
| 347 | } |
| 348 | ///@} |
| 349 | |
| 350 | ///@{ |