public function __construct($aColor = "black", $aWeight = 1)
 {
     parent::__construct($aColor, $aWeight);
     $this->SetDensity(10);
     // Slightly larger default
 }
예제 #2
0
 function __construct($aColor = "black", $aWeight = 1)
 {
     parent::__construct($aColor, $aWeight);
     $this->right = new RectPatternRDiag($aColor, $aWeight);
     $this->left = new RectPatternLDiag($aColor, $aWeight);
 }
예제 #3
0
 public function __construct($aColor = "black", $aWeight = 1)
 {
     parent::__construct($aColor, $aWeight);
 }
예제 #4
0
 public function __construct($aColor = "black", $aWeight = 1, $aLineSpacing = 7)
 {
     parent::__construct($aColor, $aWeight);
     $this->linespacing = $aLineSpacing;
 }
예제 #5
0
 public function __construct($aColor = "black", $aWeight = 1)
 {
     parent::__construct($aColor, $aWeight);
     $this->vert = new RectPatternVert($aColor, $aWeight);
     $this->hor = new RectPatternHor($aColor, $aWeight);
 }