/plugin/statdisplay/pchart/ |
H A D | GDCanvas.php | 422 $this->drawAlphaPixel($point, $alpha, $color); 426 $this->drawAlphaPixel(new Point($Xi, $Yi), $Alpha1, $color); 431 $this->drawAlphaPixel (new Point($Xi + 1, $Yi), $Alpha2, $color); 437 $this->drawAlphaPixel (new Point($Xi, $Yi + 1), $Alpha3, $color); 443 $this->drawAlphaPixel (new Point($Xi + 1, $Yi + 1), $Alpha4, $color); 448 public function drawAlphaPixel(Point $point, $alpha, Color $color) { function in GDCanvas
|
/plugin/statistics/inc/pchart/ |
H A D | GDCanvas.php | 489 $this->drawAlphaPixel($point, $alpha, $color); 493 $this->drawAlphaPixel(new Point($Xi, $Yi), $Alpha1, $color); 498 $this->drawAlphaPixel(new Point($Xi + 1, $Yi), $Alpha2, $color); 504 $this->drawAlphaPixel(new Point($Xi, $Yi + 1), $Alpha3, $color); 510 $this->drawAlphaPixel(new Point($Xi + 1, $Yi + 1), $Alpha4, $color); 515 public function drawAlphaPixel(Point $point, $alpha, Color $color) { function in GDCanvas
|
/plugin/projects/pchart/pchart/ |
H A D | pchart.php | 3111 function drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B) function in pChart 3233 $this->drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B); 3238 if ( $Alpha1 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi,$Yi,$Alpha1,$R,$G,$B); } 3241 … if ( $Alpha2 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi+1,$Yi,$Alpha2,$R,$G,$B); } 3244 … if ( $Alpha3 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi,$Yi+1,$Alpha3,$R,$G,$B); } 3247 … if ( $Alpha4 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi+1,$Yi+1,$Alpha4,$R,$G,$B); }
|
/plugin/charter/lib/pchart/ |
H A D | pChart.class.php | 3136 function drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B) function in pChart 3258 $this->drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B); 3263 if ( $Alpha1 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi,$Yi,$Alpha1,$R,$G,$B); } 3266 … if ( $Alpha2 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi+1,$Yi,$Alpha2,$R,$G,$B); } 3269 … if ( $Alpha3 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi,$Yi+1,$Alpha3,$R,$G,$B); } 3272 … if ( $Alpha4 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi+1,$Yi+1,$Alpha4,$R,$G,$B); }
|