| 1924 | } |
| 1925 | |
| 1926 | bool afxEffectConstraint::getPosition(Point3F& pos, F32 hist) |
| 1927 | { |
| 1928 | if (!mEffect || !mEffect->inScope()) |
| 1929 | return false; |
| 1930 | |
| 1931 | if (mCons_def.mPos_at_box_center) |
| 1932 | mEffect->getUpdatedBoxCenter(pos); |
| 1933 | else |
| 1934 | mEffect->getUpdatedPosition(pos); |
| 1935 | |
| 1936 | return true; |
| 1937 | } |
| 1938 | |
| 1939 | bool afxEffectConstraint::getTransform(MatrixF& xfm, F32 hist) |
| 1940 | { |
no test coverage detected