Lines Matching refs:Width
295 function setLineStyle($Width=1,$DotSize=0) argument
297 $this->LineWidth = $Width;
1439 $Width = $Positions[2] - $Positions[6]; $XOffset = $XPos - ($Width/2);
2197 $Width = $Positions[2] - $Positions[6];
2204 { $YOffset = $Height; $XOffset = -$Width; }
2207 { $XOffset = -$Width; }
2982 function drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) argument
2984 if ( $Width == 0 ) { $Width = $Height; }
2990 $Step = 360 / (2 * 3.1418 * max($Width,$Height));
2995 $Y = sin($i*3.1418/180) * $Width + $Yc;
3001 function drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) argument
3003 if ( $Width == 0 ) { $Width = $Height; }
3009 $Step = 360 / (2 * 3.1418 * max($Width,$Height));
3014 $Y1 = sin($i*3.1418/180) * $Width + $Yc;
3016 $Y2 = sin((180-$i)*3.1418/180) * $Width + $Yc;
3021 if ( ($Y1-1) > $Yc - max($Width,$Height) )
3027 function drawEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) argument
3028 { $this->drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width); }
3031 function drawFilledEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) argument
3032 { $this->drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width); }
3124 $Width = $Infos[0];
3130 imagecopymerge($this->Picture,$Raster,$X,$Y,0,0,$Width,$Height,$Alpha);
3177 $Width = $this->XSize+2*$Size;
3180 $Resampled = imagecreatetruecolor($Width,$Height);
3182 imagefilledrectangle($Resampled,0,0,$Width,$Height,$C_Background);
3187 $this->XSize = $Width;
3349 $this->setLineStyle($Width=1);