* 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. */
| 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 |