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

Method Modified

Common/Transforms/vtkAbstractTransform.cxx:382–388  ·  view source on GitHub ↗

------------------------------------------------------------------------------ During an update, we don't want to generate ModifiedEvent because code observing the event might modify the transform while the transform's update is in progress (leading to corrupt state, deadlocks, infinite recursion, or other nastiness).

Source from the content-addressed store, hash-verified

380// update is in progress (leading to corrupt state, deadlocks, infinite
381// recursion, or other nastiness).
382void vtkAbstractTransform::Modified()
383{
384 if (!this->Internals->InUpdate)
385 {
386 this->Superclass::Modified();
387 }
388}
389
390//------------------------------------------------------------------------------
391// We need to handle the circular reference between a transform and its

Callers 15

SetInverseMethod · 0.95
DeepCopyMethod · 0.95
InverseMethod · 0.45
ConcatenateMethod · 0.45
SetInputMethod · 0.45
IdentityFunction · 0.45
InverseFunction · 0.45
PreMultiplyFunction · 0.45
PostMultiplyFunction · 0.45
PushFunction · 0.45
PopFunction · 0.45
IdentityMethod · 0.45

Calls

no outgoing calls

Tested by 8

IdentityFunction · 0.36
InverseFunction · 0.36
PreMultiplyFunction · 0.36
PostMultiplyFunction · 0.36
PushFunction · 0.36
PopFunction · 0.36
ConcatenateMethod · 0.36
SetInputMethod · 0.36