Lines Matching refs:G2
256 function createColorGradientPalette($R1,$G1,$B1,$R2,$G2,$B2,$Shades) argument
259 $GFactor = ($G2-$G1)/$Shades;
325 $G2 = $R-15; if ( $G2 < 0 ) { $G2 = 0; }
328 $LineColor =$this->AllocateColor($this->Picture,$R2,$G2,$B2);
1229 …function drawPlotGraph($Data,$DataDescription,$BigRadius=5,$SmallRadius=2,$R2=-1,$G2=-1,$B2=-1,$Sh… argument
1236 $Ro = $R2; $Go = $G2; $Bo = $B2;
1247 $R2 = $Ro; $G2 = $Go; $B2 = $Bo;
1293 if ( $R2 !=-1 && $G2 !=-1 && $B2 !=-1 )
1294 $this->drawFilledCircle($XPos+1,$YPos+1,$SmallRadius,$R2,$G2,$B2);
1298 $G2 = $this->Palette[$ColorID]["G"]-15; if ( $G2 < 0 ) { $G2 = 0; }
1301 $this->drawFilledCircle($XPos+1,$YPos+1,$SmallRadius,$R2,$G2,$B2);
1318 …n,$YSerieName,$XSerieName,$PaletteID=0,$BigRadius=5,$SmallRadius=2,$R2=-1,$G2=-1,$B2=-1,$Shadow=TR… argument
1352 if ( $R2 !=-1 && $G2 !=-1 && $B2 !=-1 )
1353 $this->drawFilledCircle($X+1,$Y+1,$SmallRadius,$R2,$G2,$B2);
1357 $G2 = $this->Palette[$PaletteID]["G"]+20; if ( $G > 255 ) { $G = 255; }
1359 $this->drawFilledCircle($X+1,$Y+1,$SmallRadius,$R2,$G2,$B2);
3147 $G2 = ($RGB2 >> 8) & 0xFF;
3154 $Ga = floor($G*$Alpha+$G2*$iAlpha);