- From: SVG Working Group repository <cam@mcc.id.au>
- Date: Wed, 16 Jan 2013 22:40:55 -0800
- To: public-svg-wg@w3.org
details: https://svgwg.org/hg/svg2/rev/f881ec67fa7b branches: changeset: 420:f881ec67fa7b user: Cameron McCormack <cam@mcc.id.au> date: Thu Jan 17 17:41:46 2013 +1100 description: Add missing file. diffstat: master/images/painting/marker-rendering.svg | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diffs (25 lines): diff --git a/master/images/painting/marker-rendering.svg b/master/images/painting/marker-rendering.svg new file mode 100644 --- /dev/null +++ b/master/images/painting/marker-rendering.svg @@ -0,0 +1,20 @@ +<svg xmlns="http://www.w3.org/2000/svg" + width="275" height="200" viewBox="0 0 275 200"> + <defs> + <marker id="Triangle1" viewBox="0 0 10 10" refX="1" refY="5" + markerUnits="strokeWidth" markerWidth="4" markerHeight="3" + orient="auto"> + <path d="M 0 0 L 10 5 L 0 10 z" fill="crimson"/> + </marker> + <marker id="Triangle2" viewBox="0 0 10 10" refX="1" refY="5" + markerUnits="strokeWidth" markerWidth="4" markerHeight="3" + orient="auto"> + <path d="M 0 0 L 10 5 L 0 10 z" fill="olivedrab"/> + </marker> + </defs> + + <g fill="none" stroke-width="10"> + <path stroke="crimson" d="M 100,75 C 125,50 150,50 175,75" marker-end="url(#Triangle1)"/> + <path stroke="olivedrab" d="M 175,125 C 150,150 125,150 100,125" marker-end="url(#Triangle2)"/> + </g> +</svg>
Received on Thursday, 17 January 2013 06:41:18 UTC