MCPcopy Create free account
hub / github.com/Kitware/VTK / Push

Function Push

Common/Transforms/vtkGeneralTransform.h:227–235  ·  view source on GitHub ↗

@{ * Pushes the current transformation onto the transformation stack. */

Source from the content-addressed store, hash-verified

225 * Pushes the current transformation onto the transformation stack.
226 */
227 void Push()
228 {
229 if (this->Stack == nullptr)
230 {
231 this->Stack = vtkTransformConcatenationStack::New();
232 }
233 this->Stack->Push(&this->Concatenation);
234 this->Modified();
235 }
236 ///@}
237
238 ///@{

Callers

nothing calls this directly

Calls 3

NewFunction · 0.50
PushMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected