| 1234567891011121314151617181920212223242526 |
- from panda3d import core
- import pytest
- @pytest.mark.parametrize("coordsys", (core.CS_zup_right, core.CS_yup_right, core.CS_zup_left, core.CS_yup_left))
- def test_compose_matrix(coordsys):
- scale = core.LVecBase3(1.2, 0.5, 2)
- hpr = core.LVecBase3(45, -90, 12.5)
- shear = core.LVecBase3(0, 0, 0)
- mat = core.LMatrix3()
- core.compose_matrix(mat, scale, shear, hpr, coordsys)
- new_scale = core.LVecBase3()
- new_hpr = core.LVecBase3()
- new_shear = core.LVecBase3()
- core.decompose_matrix(mat, new_scale, new_shear, new_hpr, coordsys)
- assert new_scale.almost_equal(scale)
- assert new_shear.almost_equal(shear)
- quat = core.LQuaternion()
- quat.set_hpr(hpr, coordsys)
- new_quat = core.LQuaternion()
- new_quat.set_hpr(new_hpr, coordsys)
- assert quat.is_same_direction(new_quat)
|