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

Function PreMultiply

Common/Transforms/vtkPerspectiveTransform.h:242–250  ·  view source on GitHub ↗

* Sets the internal state of the transform to PreMultiply. All subsequent * operations will occur before those already represented in the * current transformation. In homogeneous matrix notation, M = M*A 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

240 * The default is PreMultiply.
241 */
242 void PreMultiply()
243 {
244 if (this->Concatenation->GetPreMultiplyFlag())
245 {
246 return;
247 }
248 this->Concatenation->SetPreMultiplyFlag(1);
249 this->Modified();
250 }
251
252 /**
253 * Sets the internal state of the transform to PostMultiply. All subsequent

Callers

nothing calls this directly

Calls 1

ModifiedMethod · 0.45

Tested by

no test coverage detected