コード例 #1
0
ファイル: Circle.php プロジェクト: todros/dxfHATCH
 function __construct($attributes = array())
 {
     $defaults = array();
     $defaults['center'] = array(0, 0, 0);
     $defaults['radius'] = 1;
     parent::__construct(array_merge($defaults, $attributes));
 }
コード例 #2
0
ファイル: Text.php プロジェクト: todros/dxfHATCH
 function __construct($attributes = array())
 {
     $defaults = array();
     $defaults['text'] = '';
     $defaults['point'] = array(0, 0, 0);
     $defaults['height'] = 1;
     parent::__construct(array_merge($defaults, $attributes));
 }
コード例 #3
0
ファイル: Arc.php プロジェクト: todros/dxfHATCH
 function __construct($attributes = array())
 {
     $defaults = array();
     $defaults['center'] = array(0, 0, 0);
     $defaults['radius'] = 1;
     $defaults['startAngle'] = 0.1;
     $defaults['endAngle'] = 90;
     parent::__construct(array_merge($defaults, $attributes));
 }
コード例 #4
0
ファイル: Point.php プロジェクト: todros/dxfHATCH
 function __construct($attributes = array())
 {
     $defaults = array();
     parent::__construct(array_merge($defaults, $attributes));
 }