| 319 | } |
| 320 | |
| 321 | void TriMatrix::PyTransformation( |
| 322 | ITriVector* scalingCenter, |
| 323 | ITriQuaternion* scalingRotation, |
| 324 | ITriVector* scaling, |
| 325 | ITriVector* rotationCenter, |
| 326 | ITriQuaternion* rotation, |
| 327 | ITriVector* translation ) |
| 328 | { |
| 329 | Transformation( |
| 330 | scalingCenter->GetVector(), |
| 331 | scalingRotation->GetQuaternion(), |
| 332 | scaling->GetVector(), |
| 333 | rotationCenter->GetVector(), |
| 334 | rotation->GetQuaternion(), |
| 335 | translation->GetVector() ); |
| 336 | } |
nothing calls this directly
no test coverage detected