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