Searched refs:degrees (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd.h | 848 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 D | gd_interpolation.c | 1657 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 D | gd.c | 2083 double degrees; local 2087 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rdl|l", &SIM, °rees, &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