Lines Matching refs:degrees
1631 gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateNearestNeighbour() argument
1633 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateNearestNeighbour()
1649 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateNearestNeighbour()
1688 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateGeneric() argument
1690 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateGeneric()
1717 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateGeneric()
1754 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBilinear() argument
1756 float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBilinear()
1773 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateBilinear()
1869 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBicubicFixed() argument
1871 const float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBicubicFixed()
1892 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateBicubicFixed()