Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

12 lines
201 B
C++

#include <Imath/ImathShear.h>
#include <Imath/ImathMatrix.h>
void
shear6_example()
{
Imath::Shear6f s (0.330f, 0.710f, 0.010f, 0.999f, -0.531f, -0.012f);
Imath::M44f M;
M.setShear (s);
}