Lines Matching defs:xform
1774 U_XFORM xform;
1775 xform.eM11 = eM11;
1776 xform.eM12 = eM12;
1777 xform.eM21 = eM21;
1778 xform.eM22 = eM22;
1779 xform.eDx = eDx;
1780 xform.eDy = eDy;
1781 return(xform);
1807 U_XFORM xform;
1827 xform.eM11 = mat2.M11 * mat1.M11 + mat2.M12 * mat1.M21;
1828 xform.eM12 = mat2.M11 * mat1.M12 + mat2.M12 * mat1.M22;;
1829 xform.eM21 = mat2.M21 * mat1.M11 + mat2.M22 * mat1.M21;
1830 xform.eM22 = mat2.M21 * mat1.M12 + mat2.M22 * mat1.M22;
1831 xform.eDx = eDx;
1832 xform.eDy = eDy;
1833 return(xform);
2753 \param xform U_XFORM to apply
2757 PU_POINT points_transform(PU_POINT points, int count, U_XFORM xform){
2765 newpts[i].x = U_ROUND(x * xform.eM11 + y * xform.eM21 + xform.eDx);
2766 newpts[i].y = U_ROUND(x * xform.eM12 + y * xform.eM22 + xform.eDy);
2776 \param xform U_XFORM to apply
2780 PU_POINT16 point16_transform(PU_POINT16 points, int count, U_XFORM xform){
2788 newpts[i].x = U_ROUND(x * xform.eM11 + y * xform.eM21 + xform.eDx);
2789 newpts[i].y = U_ROUND(x * xform.eM12 + y * xform.eM22 + xform.eDy);
2799 \param xform U_XFORM to apply
2803 PU_TRIVERTEX trivertex_transform(PU_TRIVERTEX tv, int count, U_XFORM xform){
2812 newtvs[i].x = U_ROUND(x * xform.eM11 + y * xform.eM21 + xform.eDx);
2813 newtvs[i].y = U_ROUND(x * xform.eM12 + y * xform.eM22 + xform.eDy);
3801 \param xform Transform to use
3804 const U_XFORM xform
3814 ((PU_EMRSETWORLDTRANSFORM) record)->xform = xform;
3823 \param xform Transform to use
3827 const U_XFORM xform,
3838 ((PU_EMRMODIFYWORLDTRANSFORM) record)->xform = xform;