/plugin/statdisplay/pchart/ |
H A D | ICanvas.php | 15 …function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, Sha… argument 17 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, argument 24 function drawRoundedRectangle(Point $corner1, Point $corner2, $radius, argument
|
H A D | GDCanvas.php | 19 if ($corner2->getX() < $corner1->getX()) { 20 $newCorner1 = new Point($corner2->getX(), $corner1->getY()); 21 $newCorner2 = new Point($corner1->getX(), $corner2->getY()); 24 $corner2 = $newCorner2; 27 if ($corner2->getY() < $corner1->getY()) { 28 $newCorner1 = new Point($corner1->getX(), $corner2->getY()); 32 $corner2 = $newCorner2; 38 $X2 = $corner2->getX(); 39 $Y2 = $corner2->getY(); 107 $X2 = $corner2->getX() + .2; [all …]
|
H A D | TestCanvas.php | 22 …function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, Sha… argument 26 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, argument 35 function drawRoundedRectangle(Point $corner1, Point $corner2, $radius, argument
|
/plugin/statistics/inc/pchart/ |
H A D | ICanvas.php | 11 function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shadowProperties); argument 13 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, argument 20 function drawRoundedRectangle(Point $corner1, Point $corner2, $radius, argument
|
H A D | GDCanvas.php | 14 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, argument 17 if($corner2->getX() < $corner1->getX()) { 18 $newCorner1 = new Point($corner2->getX(), $corner1->getY()); 19 $newCorner2 = new Point($corner1->getX(), $corner2->getY()); 22 $corner2 = $newCorner2; 25 if($corner2->getY() < $corner1->getY()) { 26 $newCorner1 = new Point($corner1->getX(), $corner2->getY()); 27 $newCorner2 = new Point($corner2->getX(), $corner1->getY()); 30 $corner2 = $newCorner2; 36 $X2 = $corner2 110 drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shadowProperties) global() argument [all...] |
H A D | TestCanvas.php | 20 function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shadowProperties) { argument 24 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, argument 33 function drawRoundedRectangle(Point $corner1, Point $corner2, $radius, argument
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | Gradient.php | 422 $corner2 = sqrt(($coords[0] ** 2) + ((1 - $coords[1]) ** 2)); 428 $radius = min($corner1, $corner2, $corner3, $corner4); 432 $radius = max($corner1, $corner2, $corner3, $corner4); 438 $corner2 = sqrt(($coords[0] ** 2) + ((($h / $w) - $coords[1]) ** 2)); 444 $radius = min($corner1, $corner2, $corner3, $corner4); 448 $radius = max($corner1, $corner2, $corner3, $corner4); 455 $corner2 = sqrt(($coords[0] ** 2) + ((1 - $coords[1]) ** 2)); 461 $radius = min($corner1, $corner2, $corner3, $corner4); 465 $radius = max($corner1, $corner2, $corner3, $corner4);
|