Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / phenx / php-font-lib / src / FontLib / Glyph / OutlineComponent.php
1 <?php
2 /**
3  * @package php-font-lib
4  * @link    https://github.com/PhenX/php-font-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  * @version $Id: Font_Table_glyf.php 46 2012-04-02 20:22:38Z fabien.menager $
8  */
9
10 namespace FontLib\Glyph;
11 /**
12  * Glyph outline component
13  *
14  * @package php-font-lib
15  */
16 class OutlineComponent {
17   public $flags;
18   public $glyphIndex;
19   public $a, $b, $c, $d, $e, $f;
20   public $point_compound;
21   public $point_component;
22   public $instructions;
23
24   function getMatrix() {
25     return array(
26       $this->a, $this->b,
27       $this->c, $this->d,
28       $this->e, $this->f,
29     );
30   }
31 }