PHP Classes

File: docs/files/src/SVGCreator/ComplexFigures/LineEndArrow.php.txt

Recommend this page to a friend!
  Classes of Tio   PHP SVG Creator   docs/files/src/SVGCreator/ComplexFigures/LineEndArrow.php.txt   Download  
File: docs/files/src/SVGCreator/ComplexFigures/LineEndArrow.php.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: PHP SVG Creator
Generate SVG chart documents
Author: By
Last change: Update of docs/files/src/SVGCreator/ComplexFigures/LineEndArrow.php.txt
Date: 3 months ago
Size: 1,162 bytes
 

Contents

Class file image Download
<?php namespace SVGCreator\ComplexFigures; class LineEndArrow { private $element; public function __construct($x1, $y1, $x2, $y2) { // Create marker $marker = new \SVGCreator\Elements\Marker(); $marker->attr("id", "arrow") ->attr("viewBox", "0 0 10 10") ->attr("refX", 0) ->attr("refY", 5) ->attr("markerUnits", "strokeWidth") ->attr("markerWidth", 4) ->attr("markerHeight", 4) ->attr("orient", "auto") ->attr("fill", "#6aa84f") ->attr("stroke", "stroke") ->append(new \SVGCreator\Elements\Path()) ->attr("d", "M 0 0 L 10 5 L 0 10 z"); // Create the line element $this->element = new \SVGCreator\Elements\Line(); $this->element->attr('x1', $x1) ->attr('y1', $y1) ->attr('x2', $x2) ->attr('y2', $y2) ->attr('stroke', '#6aa84f') ->attr('stroke-width', '2px') ->attr('marker-end', 'url(#arrow)'); // Add the marker to the defs of this element $this->element->addDef($marker); } /** * Returns the element * @return \SVGCreator\Elements\Line */ public function getElement() { return $this->element; } }