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

Function PostMultiply

Common/Transforms/vtkPerspectiveTransform.h:259–267  ·  view source on GitHub ↗

* Sets the internal state of the transform to PostMultiply. All subsequent * operations will occur after those already represented in the * current transformation. In homogeneous matrix notation, M = A*M where * M is the current transformation matrix and A is the applied matrix. * The default is PreMultiply. */

Source from the content-addressed store, hash-verified

257 * The default is PreMultiply.
258 */
259 void PostMultiply()
260 {
261 if (!this->Concatenation->GetPreMultiplyFlag())
262 {
263 return;
264 }
265 this->Concatenation->SetPreMultiplyFlag(0);
266 this->Modified();
267 }
268
269 /**
270 * Get the total number of transformations that are linked into this

Callers

nothing calls this directly

Calls 1

ModifiedMethod · 0.45

Tested by

no test coverage detected