Lines Matching refs:degrees
1612 gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateNearestNeighbour() argument
1614 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateNearestNeighbour()
1630 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateNearestNeighbour()
1669 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateGeneric() argument
1671 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateGeneric()
1698 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateGeneric()
1735 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBilinear() argument
1737 float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBilinear()
1754 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateBilinear()
1850 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBicubicFixed() argument
1852 const float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBicubicFixed()
1873 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateBicubicFixed()