Searched refs:degrees (Results 1 - 3 of 3) sorted by relevance

/PHP_TRUNK/ext/gd/libgd/
H A Dgd.h848 gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor);
849 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor);
850 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor);
851 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor);
H A Dgd_interpolation.c1657 gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor) argument
1659 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI);
1713 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor) argument
1715 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI);
1716 const int angle_rounded = (int)floor(degrees * 100);
1783 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor) argument
1785 float _angle = (float)((- degrees / 180.0f) * M_PI);
1905 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor) argument
1907 const float _angle = (float)((- degrees / 180.0f) * M_PI);
/PHP_TRUNK/ext/gd/
H A Dgd.c2083 double degrees; local
2087 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rdl|l", &SIM, &degrees, &color, &ignoretransparent) == FAILURE) {
2093 im_dst = gdImageRotateInterpolated(im_src, (const float)degrees, color);
3588 Draw a character rotated 90 degrees counter-clockwise */
3604 Draw a string vertically - rotated 90 degrees counter-clockwise */

Completed in 17 milliseconds