Нема описа

OutlineComponent.php 705B

12345678910111213141516171819202122232425262728293031
  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. namespace FontLib\Glyph;
  10. /**
  11. * Glyph outline component
  12. *
  13. * @package php-font-lib
  14. */
  15. class OutlineComponent {
  16. public $flags;
  17. public $glyphIndex;
  18. public $a, $b, $c, $d, $e, $f;
  19. public $point_compound;
  20. public $point_component;
  21. public $instructions;
  22. function getMatrix() {
  23. return array(
  24. $this->a, $this->b,
  25. $this->c, $this->d,
  26. $this->e, $this->f,
  27. );
  28. }
  29. }