commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / vendor / phenx / php-svg-lib / src / Svg / DefaultStyle.php
1 <?php
2 /**
3 * @package php-svg-lib
4 * @link http://github.com/PhenX/php-svg-lib
5 * @author Fabien Ménager <fabien.menager@gmail.com>
6 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7 */
8
9 namespace Svg;
10
11 class DefaultStyle extends Style
12 {
13 public $color = '';
14 public $opacity = 1.0;
15
16 public $fill = 'black';
17 public $fillOpacity = 1.0;
18 public $fillRule = 'nonzero';
19
20 public $stroke = 'none';
21 public $strokeOpacity = 1.0;
22 public $strokeLinecap = 'butt';
23 public $strokeLinejoin = 'miter';
24 public $strokeMiterlimit = 4;
25 public $strokeWidth = 1.0;
26 public $strokeDasharray = 0;
27 public $strokeDashoffset = 0;
28 }