ImageShear
Was this helpful?
Was this helpful?
// Shear image horizontally by 0.5
result = ImageShear( myImage, 0.5 );
// Shear image vertically by 0.3
result = ImageShear( myImage, 0.3, "vertical" );
// As a member function
myImage.shear( 0.2, "horizontal" );