Sets the fixed parameters to the general fixed parameters of the stack + the fixed parameters of the first * sub-transform (if any). */
| 191 | /** Sets the fixed parameters to the general fixed parameters of the stack + the fixed parameters of the first |
| 192 | * sub-transform (if any). */ |
| 193 | void |
| 194 | UpdateFixedParameters() |
| 195 | { |
| 196 | const SubTransformType * const subTransform = |
| 197 | m_SubTransformContainer.empty() ? nullptr : m_SubTransformContainer.front(); |
| 198 | this->UpdateFixedParametersInternally((subTransform == nullptr) ? FixedParametersType() |
| 199 | : subTransform->GetFixedParameters()); |
| 200 | } |
| 201 | |
| 202 | |
| 203 | /** Set all sub transforms to transform. */ |