public static AffineTransform GetShearInstance(float shx, float shy) { var m = new AffineTransform(); m.SetToShear(shx, shy); return(m); }