fixing path exports to SVG (#5438)
* fixing path exports to SVG * extend svg import tests * added a failing test for the SVG export * more tests for polygons
|
|
@ -216,7 +216,8 @@
|
|||
absoluteClipPath = this.clipPath && this.clipPath.absolutePositioned,
|
||||
commonPieces, markup = [], clipPathMarkup,
|
||||
// insert commons in the markup, style and svgCommons
|
||||
index = objectMarkup.indexOf('COMMON_PARTS');
|
||||
index = objectMarkup.indexOf('COMMON_PARTS'),
|
||||
additionalTransform = options.additionalTransform;
|
||||
if (clipPath) {
|
||||
clipPath.clipPathId = 'CLIPPATH_' + fabric.Object.__uid++;
|
||||
clipPathMarkup = '<clipPath id="' + clipPath.clipPathId + '" >\n' +
|
||||
|
|
@ -236,7 +237,8 @@
|
|||
);
|
||||
commonPieces = [
|
||||
styleInfo,
|
||||
noStyle ? '' : this.addPaintOrder(), ' '
|
||||
noStyle ? '' : this.addPaintOrder(), ' ',
|
||||
additionalTransform ? 'transform="' + additionalTransform + '" ' : '',
|
||||
].join('');
|
||||
objectMarkup[index] = commonPieces;
|
||||
if (this.fill && this.fill.toLive) {
|
||||
|
|
|
|||
|
|
@ -499,6 +499,16 @@
|
|||
this._toSVG(), { reviver: reviver, additionalTransform: additionalTransform }
|
||||
);
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns svg representation of an instance
|
||||
* @param {Function} [reviver] Method for further parsing of svg representation.
|
||||
* @return {String} svg representation of an instance
|
||||
*/
|
||||
toSVG: function(reviver) {
|
||||
var additionalTransform = this._getOffsetTransform();
|
||||
return this._createBaseSVGMarkup(this._toSVG(), { reviver: reviver, additionalTransform: additionalTransform });
|
||||
},
|
||||
/* _TO_SVG_END_ */
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@
|
|||
var done = assert.async();
|
||||
makePathObject(function(path) {
|
||||
assert.ok(typeof path.toSVG === 'function');
|
||||
assert.deepEqual(path.toSVG(), '<g transform=\"matrix(1 0 0 1 200.5 200.5)\" >\n<path style=\"stroke: rgb(0,0,255); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,0,0); fill-rule: nonzero; opacity: 1;\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</g>\n');
|
||||
assert.deepEqual(path.toSVG(), '<g transform=\"matrix(1 0 0 1 200.5 200.5)\" >\n<path style=\"stroke: rgb(0,0,255); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,0,0); fill-rule: nonzero; opacity: 1;\" transform=\" translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</g>\n');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
|
@ -139,7 +139,7 @@
|
|||
makePathObject(function(path) {
|
||||
makePathObject(function(path2) {
|
||||
path.clipPath = path2;
|
||||
assert.deepEqual(path.toSVG(), '<g transform=\"matrix(1 0 0 1 200.5 200.5)\" clip-path=\"url(#CLIPPATH_0)\" >\n<clipPath id=\"CLIPPATH_0\" >\n\t<path transform=\"matrix(1 0 0 1 200.5 200.5) translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</clipPath>\n<path style=\"stroke: rgb(0,0,255); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,0,0); fill-rule: nonzero; opacity: 1;\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</g>\n', 'path clipPath toSVG should match');
|
||||
assert.deepEqual(path.toSVG(), '<g transform=\"matrix(1 0 0 1 200.5 200.5)\" clip-path=\"url(#CLIPPATH_0)\" >\n<clipPath id=\"CLIPPATH_0\" >\n\t<path transform=\"matrix(1 0 0 1 200.5 200.5) translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</clipPath>\n<path style=\"stroke: rgb(0,0,255); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,0,0); fill-rule: nonzero; opacity: 1;\" transform=\" translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</g>\n', 'path clipPath toSVG should match');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
|
@ -152,7 +152,7 @@
|
|||
makePathObject(function(path2) {
|
||||
path.clipPath = path2;
|
||||
path.clipPath.absolutePositioned = true;
|
||||
assert.deepEqual(path.toSVG(), '<g clip-path=\"url(#CLIPPATH_0)\" >\n<g transform=\"matrix(1 0 0 1 200.5 200.5)\" >\n<clipPath id=\"CLIPPATH_0\" >\n\t<path transform=\"matrix(1 0 0 1 200.5 200.5) translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</clipPath>\n<path style=\"stroke: rgb(0,0,255); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,0,0); fill-rule: nonzero; opacity: 1;\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</g>\n</g>\n', 'path clipPath toSVG absolute should match');
|
||||
assert.deepEqual(path.toSVG(), '<g clip-path=\"url(#CLIPPATH_0)\" >\n<g transform=\"matrix(1 0 0 1 200.5 200.5)\" >\n<clipPath id=\"CLIPPATH_0\" >\n\t<path transform=\"matrix(1 0 0 1 200.5 200.5) translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</clipPath>\n<path style=\"stroke: rgb(0,0,255); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,0,0); fill-rule: nonzero; opacity: 1;\" transform=\" translate(-200, -200)\" d=\"M 100 100 L 300 100 L 200 300 z\" stroke-linecap=\"round\" />\n</g>\n</g>\n', 'path clipPath toSVG absolute should match');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
15
test/visual/assets/clippath-5.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"
|
||||
id="Wikimedia logo"
|
||||
viewBox="-599 -599 1198 1198" width="400" height="400">
|
||||
<defs>
|
||||
<clipPath id="mask" transform="scale(1.1, 1.1)">
|
||||
<path d="M 47.5,-87.5 v 425 h -95 v -425 l -552,-552 v 1250 h 1199 v -1250 z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#mask)">
|
||||
<circle id="green parts" fill="#396" r="336.5"/>
|
||||
<circle id="blue arc" fill="none" stroke="#069" r="480.25" stroke-width="135.5" />
|
||||
</g>
|
||||
<circle fill="#900" cy="-379.5" r="184.5" id="red circle"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 618 B |
1
test/visual/assets/clippath-6.svg
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
111
test/visual/assets/clippath-7.svg
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Creator: CorelDRAW -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="330px" height="412px" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
||||
viewBox="0 0 934.34 1167.52"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<font id="FontID1" horiz-adv-x="813" font-variant="normal" style="fill-rule:nonzero" font-style="normal" font-weight="400">
|
||||
<font-face
|
||||
font-family="Copperplate Gothic Bold">
|
||||
<font-face-src>
|
||||
<font-face-name name="Copperplate Gothic Bold"/>
|
||||
</font-face-src>
|
||||
</font-face>
|
||||
<missing-glyph><path d="M0 0z"/></missing-glyph>
|
||||
<glyph unicode="U" horiz-adv-x="816" d="M737.996 615.329l0 -373.836c0,-70.6652 -12.9895,-123.488 -38.9978,-158.659 -46.8267,-63.1735 -143.661,-94.8409 -290.504,-94.8409 -106.159,0 -187.321,17.1678 -243.663,51.3422 -32.8256,19.8361 -55.6671,46.8267 -68.3341,81.001 -12.3298,33.9984 -18.502,74.3304 -18.502,121.157l0 373.836c0,10.1746 -2.33107,17.8422 -6.83194,23.0028 -4.50087,5.16061 -12.491,9.33894 -24.161,12.667l0 15.995 207.993 0 0 -15.995c-11.4941,-3.00547 -19.4989,-7.16914 -24.161,-12.5057 -4.50087,-5.32188 -6.83194,-12.9895 -6.83194,-23.1641l0 -332.991c0,-38.338 2.1698,-66.8387 6.33348,-85.3406 4.16367,-18.326 12.1685,-33.8372 23.8238,-46.1669 31.1689,-33.1628 84.505,-49.8321 159.847,-49.8321 75.6645,0 129.162,16.6694 160.331,49.8321 11.3328,12.3298 19.1617,27.8409 23.3254,46.1669 4.16367,18.502 6.33348,47.0026 6.33348,85.3406l0 332.991c0,10.1746 -2.33107,17.6663 -6.83194,23.0028 -4.50087,5.16061 -12.491,9.33894 -24.161,12.667l0 15.995 196.001 0 0 -15.995c-11.67,-3.32801 -19.6748,-7.50634 -24.1757,-12.667 -4.50087,-5.16061 -6.83194,-12.8282 -6.83194,-23.0028z"/>
|
||||
<glyph unicode="R" horiz-adv-x="808" d="M237.007 272.002l0 -220.836c0,-9.83741 2.33107,-17.3291 6.99321,-22.6656 4.66214,-5.49781 12.667,-9.50021 23.9998,-12.5057l0 -15.995 -207.993 0 0 15.995c11.6554,3.34267 19.6602,7.50634 24.161,12.667 4.50087,5.17527 6.83194,12.667 6.83194,22.5044l0 564.163c0,10.1746 -2.33107,17.8422 -6.83194,23.0028 -4.50087,5.16061 -12.5057,9.50021 -24.161,12.667l0 15.995 417.32 0c50.8437,0 91.1757,-2.99081 121.01,-8.82581 29.8348,-5.83501 55.8284,-16.1709 77.9956,-30.8317 25.6711,-17.0066 44.8328,-40.0094 57.661,-69.0085 12.0072,-27.9875 18.0035,-57.9982 18.0035,-89.9881 0,-109.003 -60.4906,-172.675 -181.325,-191.338l129.499 -183.495c22.6656,-32.1805 39.335,-52.8376 49.9934,-62.1765 10.6731,-9.16301 23.5013,-14.3236 38.8365,-15.3352l0 -15.995 -241.171 0 0 15.995c16.5081,2.66827 24.8354,8.50328 24.8354,17.505 0,5.83501 -7.66761,19.9974 -23.0028,42.5017l-135.833 196.001 -176.824 0zm0 110l224.824 0c33.1628,0 56.6641,0.996936 70.3426,2.99081 13.6639,1.84726 26.3308,6.01094 37.6637,12.1685 24.8354,13.3413 37.1652,37.5024 37.1652,72.3365 0,34.8341 -12.3298,58.9951 -37.1652,72.3365 -11.67,6.49474 -24.1757,10.6584 -37.3411,12.5057 -13.1654,1.8326 -36.828,2.65361 -70.6652,2.65361l-224.824 0 0 -174.992z"/>
|
||||
<glyph unicode="Y" horiz-adv-x="712" d="M430.002 279.494l0 -227.829c0,-9.99868 2.33107,-17.6663 6.83194,-23.0028 4.66214,-5.16061 12.667,-9.32428 24.161,-12.667l0 -15.995 -207.993 0 0 15.995c11.3328,3.34267 19.3376,7.50634 23.9998,12.667 4.66214,5.33654 6.99321,13.0041 6.99321,23.0028l0 227.829 -215.499 302.834c-18.502,26.0083 -33.0015,43.3374 -43.6599,52.3391 -10.4971,9.00174 -23.1641,14.3383 -37.8396,16.3322l0 15.995 263.675 0 0 -15.995c-21.8446,-3.50394 -32.8402,-13.6639 -32.8402,-30.172 0,-5.82035 6.67067,-18.6632 20.1733,-38.4993l119.999 -179.155 124.163 179.155c13.3413,19.1764 19.9974,32.1658 19.9974,39.0124 0,7.33041 -2.82954,13.8252 -8.66455,19.1617 -5.99628,5.33654 -13.8252,8.82581 -23.9998,10.4971l0 15.995 257.503 0 0 -15.995c-14.6608,-1.99387 -27.3278,-7.33041 -37.8396,-16.3322 -10.6584,-9.00174 -25.158,-26.3308 -43.6599,-52.3391l-215.499 -302.834z"/>
|
||||
<glyph unicode="B" horiz-adv-x="806" d="M653.667 349.661c74.8288,-28.3247 112.331,-80.8251 112.331,-157.501 0,-60.989 -21.83,-108.666 -65.5046,-143.324 -21.9912,-17.1678 -47.6623,-29.6735 -76.8227,-37.3411 -29.175,-7.66761 -65.1674,-11.4941 -108.168,-11.4941l-455.497 0 0 15.995c11.6554,3.34267 19.6602,7.50634 24.161,12.667 4.50087,5.17527 6.83194,12.8429 6.83194,23.0028l0 563.665c0,10.1746 -2.33107,17.8422 -6.83194,23.0028 -4.50087,5.16061 -12.5057,9.50021 -24.161,12.667l0 15.995 451.157 0c43.1761,0 77.9956,-3.32801 104.502,-9.82275 26.3308,-6.5094 49.3337,-17.505 69.331,-33.1774 39.335,-30.8317 58.9951,-75.4886 58.9951,-133.663 0,-65.1674 -30.1573,-111.994 -90.3253,-140.671zm-416.661 52.3391l255.157 0c38.6752,0 65.6658,5.67374 81.001,17.0066 17.1678,12.9895 25.8324,33.1628 25.8324,60.4906 0,28.0022 -8.16608,47.8383 -24.337,59.6695 -16.3322,11.8313 -43.8212,17.8276 -82.4964,17.8276l-255.157 0 0 -154.994zm0 -292l247.167 0c45.8297,0 78.9925,6.33348 99.1658,19.0004 23.1641,14.8368 34.6582,38.6606 34.6582,71.9993 0,33.0015 -11.4941,56.84 -34.6582,71.9993 -19.8361,12.667 -52.9989,19.0004 -99.1658,19.0004l-247.167 0 0 -181.999z"/>
|
||||
<glyph unicode="G" horiz-adv-x="857" d="M652.993 239.998l-164.832 0c-9.99868,0 -17.6663,-2.33107 -22.6656,-6.83194 -4.99934,-4.50087 -9.16301,-12.5057 -12.491,-24.161l-16.0096 0 0 154.994 16.0096 0c3.32801,-11.9926 7.33041,-20.1586 12.491,-24.4982 4.99934,-4.3396 12.5057,-6.49474 22.6656,-6.49474l315.838 0 0 -16.0096c-11.4941,-3.16674 -19.4989,-7.49168 -24.161,-12.667 -4.50087,-5.16061 -6.83194,-12.8282 -6.83194,-23.0028l0 -136.654c0,-10.1746 2.15514,-17.8422 6.65601,-23.0028 4.50087,-5.17527 12.5057,-9.33894 24.337,-12.667l0 -12.0072c-126.494,-72.659 -249.337,-109.003 -368.001,-109.003 -107.83,0 -195.663,25.6711 -263.66,76.8374 -85.5019,64.5076 -128.341,154.173 -128.341,268.997 0,106.833 38.0009,192.013 114.164,255.172 72.3365,60.0067 168.336,90.0028 288.012,90.0028 38.0009,0 73.9932,-3.50394 107.654,-10.4971 33.6759,-7.00787 71.9993,-18.6779 114.838,-35.1713 22.1672,-8.82581 38.0009,-13.1654 47.3398,-13.1654 6.83194,0 14.8221,3.66521 23.9998,11.1715l14.0011 -7.34507 -78.5087 -159.656 -14.1624 7.33041c-0.337199,10.6584 -1.8326,18.326 -4.3396,23.0028 -2.66827,4.82341 -8.48862,10.4971 -17.6663,17.3291 -19.8361,14.998 -48.9965,27.665 -87.3345,38.1621 -38.4993,10.5118 -74.8288,15.8337 -108.989,15.8337 -69.6682,0 -127.505,-19.4989 -173.335,-58.6579 -51.8407,-44.5103 -77.673,-103.007 -77.673,-175.842 0,-70.4892 25.3339,-127.329 75.8404,-170.828 46.3282,-39.8335 107.332,-59.6695 182.996,-59.6695 37.0039,0 73.3334,4.3396 109.164,12.8282 35.831,8.50328 66.8387,20.012 92.9936,34.8341l0 91.3369z"/>
|
||||
</font>
|
||||
<font id="FontID0" horiz-adv-x="673" font-variant="normal" class="str2" style="fill-rule:nonzero" font-style="normal" font-weight="400">
|
||||
<font-face
|
||||
font-family="EnglischeSchT">
|
||||
<font-face-src>
|
||||
<font-face-name name="EnglischeSchT"/>
|
||||
</font-face-src>
|
||||
</font-face>
|
||||
<missing-glyph><path d="M0 0z"/></missing-glyph>
|
||||
<glyph unicode="t" horiz-adv-x="246" d="M304.666 357.008l-199.167 -263.34c-29.6643,-39.507 -44.5049,-65.1594 -44.5049,-77.0081 0,-9.16277 4.99788,-13.6677 15.1806,-13.6677 14.6536,0 40.323,12.6817 76.8211,38.181 36.6681,25.4994 72.5032,55.4866 107.335,89.8258l10.1657 -11.1687c-96.9996,-86.4938 -162.669,-129.826 -196.838,-129.826 -21.8275,0 -32.6562,14.1606 -32.6562,42.4989 0,18.9885 4.65788,38.334 14.1606,58.0025 9.50276,19.8215 26.1623,45.4909 50.3357,77.1611l144.496 189.341 -76.1581 0 6.83383 13.9907 79.66 0 75.1721 96.9996 54.6706 0 -75.1721 -96.9996 105.329 0 -7.66681 -13.9907 -107.998 0z"/>
|
||||
<glyph unicode="5" horiz-adv-x="433" d="M361.326 455.997l-121.156 -152.333c27.9983,17.8326 49.8258,30.0042 65.3294,36.1751 15.6736,6.15385 31.3302,9.16277 47.3268,9.16277 21.5045,0 38.504,-7.17382 51.1687,-21.6745 12.6647,-14.5006 19.0055,-33.8292 19.0055,-57.9856 0,-57.3396 -30.8372,-114.509 -92.6647,-171.849 -34.1691,-31.3302 -73.5062,-56.9996 -117.994,-77.1611 -44.6749,-20.1615 -84.5049,-30.3272 -120,-30.3272 -23.1704,0 -40.51,6.32384 -52.1717,18.9885 -10.1657,10.6757 -15.1636,23.0004 -15.1636,36.5151 0,11.4917 3.8249,21.3175 11.6617,29.8173 7.66681,8.49979 16.9996,12.6817 27.6583,12.6817 7.00382,0 13.1747,-2.49894 18.1725,-7.34382 4.99788,-4.82788 7.49681,-10.6587 7.49681,-17.3226 0,-6.83383 -2.66893,-12.6817 -7.9898,-17.5096 -5.33787,-4.99788 -12.0017,-7.49681 -20.0085,-7.8368 -9.99575,-0.662983 -14.9936,-3.33192 -14.9936,-8.1598 0,-6.17085 4.82788,-11.8317 14.6706,-16.9996 9.65576,-5.16787 20.6545,-7.8368 32.6562,-7.8368 45.5079,0 96.6766,23.6634 153.166,71.1772 40.663,34.4921 75.0021,73.1662 102.83,115.988 27.8453,42.8389 41.666,78.674 41.666,107.165 0,10.5057 -3.33192,18.8355 -9.99575,25.1764 -6.66383,6.32384 -15.5036,9.50276 -26.6723,9.50276 -23.6634,0 -51.1517,-9.00977 -82.1589,-27.1823 -31.0072,-18.1555 -60.9945,-42.3289 -89.5028,-72.4862l-13.3277 9.33277 198.334 249.996c27.6583,-10.5057 55.3336,-15.6736 82.9919,-15.6736 29.0013,0 59.3455,8.0068 91.3387,24.0034l6.83383 -8.32979c-25.6694,-17.4926 -47.4968,-29.4943 -65.1594,-36.0051 -17.8496,-6.49384 -37.8411,-9.65576 -60.3485,-9.65576 -15.9966,0 -36.9911,2.65193 -63.0004,7.9898z"/>
|
||||
<glyph unicode="s" horiz-adv-x="280" d="M232.826 286.171l-183.986 -158.674 -8.83978 11.1687 195.325 165.508c4.50489,15.9966 11.0157,30.1572 19.0055,42.1589 9.84275,14.5006 18.4955,21.6745 26.3323,21.6745 5.50786,0 8.32979,-3.00892 8.32979,-8.83978 0,-15.9966 -14.8236,-37.1611 -44.3179,-63.3404 -1.83595,-12.9877 -2.66893,-22.3204 -2.66893,-28.1683 0,-6.81683 0.662983,-16.9996 1.98895,-30.3272 2.66893,-22.4904 4.0119,-41.496 4.0119,-56.9996 0,-20.5015 -3.17892,-38.334 -9.50276,-53.4977 -6.34084,-15.1636 -17.8326,-31.9932 -34.5091,-50.5057 -21.4875,-24.3264 -47.4968,-44.8279 -78.164,-61.4875 -30.4972,-16.5066 -57.3226,-24.8364 -80.493,-24.8364 -32.8432,0 -49.3328,14.3306 -49.3328,42.9919 0,13.1747 3.8249,24.3434 11.4917,33.8292 7.66681,9.50276 16.9996,14.1776 28.1683,14.1776 7.17382,0 13.3277,-2.49894 18.4955,-7.34382 5.16787,-4.82788 7.8368,-10.6587 7.8368,-17.4926 0,-13.3277 -6.66383,-21.9975 -19.9915,-25.8394 -8.83978,-2.32894 -14.1776,-4.1649 -16.0136,-5.66086 -1.98895,-1.49596 -2.99193,-4.33489 -2.99193,-8.49979 0,-9.50276 7.17382,-14.1606 21.5045,-14.1606 19.4985,0 40.833,9.33277 64.1564,27.9983 23.3404,18.6655 44.8449,43.8249 64.6664,75.3251 18.1725,29.5113 31.6702,57.5096 40.34,83.5019 8.66978,26.1623 14.9936,58.6655 19.1585,97.3396z"/>
|
||||
<glyph unicode="E" horiz-adv-x="713" d="M555.172 417.493c1.98895,-12.3247 5.83085,-22.3204 11.6617,-29.8343 15.5036,1.51296 25.6694,2.34594 30.4972,2.34594 12.8347,0 24.0034,-1.66596 33.5062,-4.99788 9.50276,-3.33192 14.1606,-7.17382 14.1606,-11.5087 0,-9.67276 -11.3387,-14.5006 -33.8292,-14.5006 -18.0025,0 -35.0021,4.33489 -51.1687,13.0047 -46.4938,-10.3357 -94.0076,-33.9992 -142.167,-70.8372 -41.173,-31.1602 -75.1721,-66.9953 -102.167,-107.165 -27.1653,-40.34 -40.663,-75.1721 -40.663,-104.836 0,-26.1623 12.6647,-46.8338 38.164,-62.1674 21.8275,-13.3277 51.3387,-19.9915 88.8398,-19.9915 46.6638,0 90.8287,7.15682 132.665,21.5045 41.836,14.3306 78.164,34.6621 108.661,60.9945 40.493,34.4921 60.6715,69.4943 60.6715,104.836 0,16.6596 -6.83383,29.9873 -20.3315,40.323 -13.4977,10.1657 -31.1772,15.3336 -53.3447,15.3336 -44.6579,0 -90.3187,-14.6706 -137.153,-43.8249 -46.8338,-29.1713 -89.8428,-70.0042 -128.84,-122.669l-11.8317 6.83383c33.8292,54.9936 74.8321,98.1725 122.992,129.503 48.1768,31.5002 97.6796,47.1568 148.338,47.1568 30.0042,0 53.8377,-6.66383 71.5002,-19.8215 17.8326,-13.1747 26.6723,-30.8372 26.6723,-53.0047 0,-38.997 -23.0004,-78.164 -68.8313,-117.161 -69.0013,-58.6825 -152.333,-88.0068 -250.013,-88.0068 -49.1628,0 -87.3268,10.1657 -114.322,30.3272 -31.1772,23.1704 -46.8338,55.6736 -46.8338,97.6796 0,45.3209 14.9936,88.1598 45.1679,128.823 30.1572,40.51 70.8202,72.5032 121.989,95.9966 39.337,17.8326 86.0008,32.1802 140.178,43.0089 -2.66893,4.82788 -4.33489,7.9898 -5.33787,9.65576 -5.33787,8.49979 -9.00977,16.1666 -11.3387,23.0004 -7.9898,-0.322992 -13.6677,-0.492988 -16.4896,-0.492988 -51.1687,0 -93.8377,8.83978 -128.007,26.3323 -23.0004,11.5087 -41.003,26.1623 -53.8377,44.3349 -12.8347,18.0025 -19.3285,37.1611 -19.3285,57.4926 0,33.5062 13.0047,64.6664 38.997,93.3447 39.507,42.9919 98.3425,64.4964 176.83,64.4964 43.1789,0 84.1649,-7.32682 122.499,-21.8275l-5.83085 -9.84275c-28.3383,7.8368 -57.6626,11.6617 -88.1598,11.6617 -60.5015,0 -112.843,-13.3277 -157.008,-40 -44.1649,-26.6553 -66.3323,-60.1615 -66.3323,-100.824 0,-38.674 22.1674,-67.5053 66.6723,-86.6638 33.8292,-15.0106 72.3332,-22.5074 115.495,-22.5074 1.49596,-0.169996 5.50786,-0.322992 11.6617,-0.322992 0,24.3264 5.01487,45.3209 15.0106,62.8304 19.6685,33.8292 47.4968,64.3264 83.9949,91.4917 36.4981,27.1653 78.164,48.6698 124.998,64.6664 50.6757,16.8466 94.0076,25.3464 129.673,25.3464 42.3289,0 63.4934,-14.3476 63.4934,-43.0089 0,-19.1585 -10.6587,-41.326 -32.1632,-66.5023 -21.5045,-25.1594 -49.3328,-47.8368 -83.5019,-67.9983 -41.003,-24.4964 -82.9919,-42.9919 -125.831,-55.6736 -42.9919,-12.6647 -93.0047,-21.4875 -150.327,-26.3323zm2.49894 16.1666c113.999,10.0127 208.33,39.847 282.992,89.5028 26.3323,17.5096 48.1768,36.8381 65.4994,57.6796 17.1696,20.9945 25.8394,38.657 25.8394,52.8177 0,18.1725 -14.6706,27.3353 -43.9949,27.3353 -52.1717,0 -112.503,-23.1534 -181.334,-69.6643 -46.5108,-31.1602 -87.3438,-67.9983 -122.176,-110.497 -11.3217,-13.6677 -20.3315,-29.3413 -26.8253,-47.1738z"/>
|
||||
<glyph unicode="1" horiz-adv-x="433" d="M602.499 500.994l-385.669 -500.994 -70.3272 0c82.9919,98.0025 146.825,172.002 191.33,222.167 96.6596,109.001 160.34,181.504 191.007,217.34 -128.007,-78.181 -254.671,-151.177 -379.839,-219.346l-7.8368 15.1636c124.675,68.3383 216.507,120.34 275.665,156.005 59.0055,35.6651 114.509,72.1632 166.171,109.664l19.4985 0z"/>
|
||||
<glyph unicode=" " horiz-adv-x="249" d=""/>
|
||||
<glyph unicode="." horiz-adv-x="250" d="M82.1589 73.9992c8.49979,0 15.6736,-2.66893 21.3345,-7.8368 5.67786,-5.16787 8.49979,-11.8317 8.49979,-19.9915 0,-13.3447 -5.32087,-25.4994 -16.1666,-36.4981 -10.6587,-11.1687 -22.4904,-16.6766 -35.4951,-16.6766 -8.49979,0 -15.5036,3.00892 -20.9945,8.83978 -5.50786,5.83085 -8.32979,13.1577 -8.32979,21.8275 0,12.8347 5.32087,24.3434 15.8266,34.6621 10.6587,10.5057 22.3374,15.6736 35.3251,15.6736z"/>
|
||||
</font>
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
@font-face { font-family:"Copperplate Gothic Bold";font-variant:normal;font-style:normal;font-weight:normal;src:url("#FontID1") format(svg)}
|
||||
@font-face { font-family:"EnglischeSchT";font-variant:normal;font-style:normal;font-weight:normal;src:url("#FontID0") format(svg)}
|
||||
.str2 {stroke-width:59.97;stroke-miterlimit:2.61313}
|
||||
.str3 {stroke:#0038A8;stroke-width:5.9;stroke-miterlimit:2.61313}
|
||||
.str0 {stroke:white;stroke-width:58.96;stroke-miterlimit:2.61313}
|
||||
.str1 {stroke:#0038A8;stroke-width:2.95;stroke-miterlimit:2.61313}
|
||||
.fil2 {fill:none}
|
||||
.fil4 {fill:#0038A8}
|
||||
.fil5 {fill:#B6B2AB}
|
||||
.fil6 {fill:white}
|
||||
.fil3 {fill:white}
|
||||
.fil0 {fill:#0038A8}
|
||||
.fil8 {fill:#0038A8}
|
||||
.fil1 {fill:#B6B2AB}
|
||||
.fil7 {fill:#B6B2AB;fill-rule:nonzero}
|
||||
.fnt0 {font-weight:normal;font-size:98.31px;font-family:'EnglischeSchT'}
|
||||
.fnt1 {font-weight:normal;font-size:113.99px;font-family:'Copperplate Gothic Bold'}
|
||||
]]>
|
||||
</style>
|
||||
<clipPath id="id0">
|
||||
<path d="M467.18 38.67c0.71,0.9 1.46,1.81 2.25,2.73 56.13,65.04 326.75,181.41 414.95,137.64 -15.96,34.98 -12.46,77.62 -13.77,109.51 -4.51,108.86 -3.21,216.58 -8.96,332.26 -16,321.29 -308.79,344.59 -394.38,499.11 -0.04,0.07 -0.02,0.03 -0.06,0.1l-0.06 -0.09c-85.47,-154.66 -378.46,-177.87 -394.46,-499.27 -5.76,-115.68 -4.45,-223.4 -8.97,-332.26 -1.32,-31.89 2.19,-74.53 -13.77,-109.51 88.05,43.7 357.85,-72.17 414.65,-137.28 0.46,-0.53 2.11,-2.34 2.58,-2.93z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="Layer_x0020_1">
|
||||
<metadata id="CorelCorpID_0Corel-Layer"/>
|
||||
<g id="_912882800">
|
||||
<g>
|
||||
<path class="fil0" d="M488.27 1131.59l-19.55 35.93 -21.89 -34.79c-22.69,-36.07 -58.38,-64.55 -92.66,-89.06 -42.52,-30.41 -86.85,-57.71 -128.21,-89.87 -112.47,-87.44 -170.06,-187.56 -177.25,-331.94 -5.51,-110.8 -4.39,-221.68 -8.97,-332.46 -1.32,-32 1.99,-70.69 -11.63,-100.53l-28.1 -61.58 60.63 30.09c46.21,22.93 159.89,-13.7 205.18,-30.77 38.47,-14.51 76.93,-31.88 112.78,-52.06 20.96,-11.8 52.01,-30.5 67.91,-48.72 0.68,-0.78 1.39,-1.54 2.07,-2.33l18.77 -23.49 18.73 23.82c0.5,0.64 1.02,1.27 1.55,1.88 15.71,18.2 46.95,37.03 67.78,48.78 35.95,20.26 74.54,37.7 113.13,52.26 45.29,17.08 158.97,53.71 205.18,30.78l60.64 -30.09 -28.1 61.58c-13.62,29.85 -10.3,68.53 -11.63,100.53 -4.59,110.78 -3.46,221.66 -8.97,332.46 -7.23,145.23 -66.74,243.62 -180.39,330.1 -41.57,31.64 -86.05,58.68 -128.2,89.34 -33.68,24.5 -68.22,53.25 -88.78,90.14z"/>
|
||||
<path class="fil0" d="M467.18 38.67c0.71,0.9 1.46,1.81 2.25,2.73 56.13,65.04 326.75,181.41 414.95,137.64 -15.96,34.98 -12.46,77.62 -13.77,109.51 -4.51,108.86 -3.21,216.58 -8.96,332.26 -16,321.29 -308.79,344.59 -394.38,499.11 -0.04,0.07 -0.02,0.03 -0.06,0.1l-0.06 -0.09c-85.47,-154.66 -378.46,-177.87 -394.46,-499.27 -5.76,-115.68 -4.45,-223.4 -8.97,-332.26 -1.32,-31.89 2.19,-74.53 -13.77,-109.51 88.05,43.7 357.85,-72.17 414.65,-137.28 0.46,-0.53 2.11,-2.34 2.58,-2.93z"/>
|
||||
<g style="clip-path:url(#id0)">
|
||||
<g>
|
||||
<g>
|
||||
<rect class="fil0 str0" x="-1.98" y="-52.41" width="314.15" height="1276.81"/>
|
||||
<rect class="fil1 str0" x="310.1" y="-52.41" width="314.15" height="1276.81"/>
|
||||
<rect class="fil0 str0" x="622.17" y="-52.41" width="314.15" height="1276.81"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path class="fil2 str1" d="M467.18 38.67c0.71,0.9 1.46,1.81 2.25,2.73 56.13,65.04 326.75,181.41 414.95,137.64 -15.96,34.98 -12.46,77.62 -13.77,109.51 -4.51,108.86 -3.21,216.58 -8.96,332.26 -16,321.29 -308.79,344.59 -394.38,499.11 -0.04,0.07 -0.02,0.03 -0.06,0.1l-0.06 -0.09c-85.47,-154.66 -378.46,-177.87 -394.46,-499.27 -5.76,-115.68 -4.45,-223.4 -8.97,-332.26 -1.32,-31.89 2.19,-74.53 -13.77,-109.51 88.05,43.7 357.85,-72.17 414.65,-137.28 0.46,-0.53 2.11,-2.34 2.58,-2.93z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="fil3" d="M469.43 353.7c35.17,-26.82 94,-22.44 133.33,-12.83 62.05,15.16 122.68,51.25 161.9,102.12l8.39 10.89 -17.83 11.84 40.36 19.06 0 8.12c0,5.22 0.42,10.38 0.2,15.62 -0.25,6 -1.14,12.01 -2.4,17.88 -6.01,27.99 -15.4,51.69 -30.85,75.83 -21.95,34.31 -46.85,57.5 -78.48,82.61l-5.42 4.3 -24.42 -8.08 -36.77 61.9 -52.65 -0.67c-25.36,15.86 -45.34,40.35 -65.84,61.68l-7.61 7.91 -25.75 -18.07 -22.57 18.94 -76.53 -69.96 -58.82 -1 -29.94 -60.71 -16.75 10.5 -6.98 -5.01c-7.59,-5.44 -15.16,-13.09 -21.7,-19.76 -9.09,-9.29 -17.87,-18.96 -26.41,-28.76 -8.73,-10.02 -17.29,-20.25 -25.46,-30.73 -5.69,-7.31 -12.28,-15.8 -16.7,-23.93 -3.9,-7.19 -7.84,-14.05 -10.59,-21.8 -7.26,-20.44 -13.25,-52.83 -11.98,-74.53l0.46 -7.91 39.59 -16.93 -20.45 -11.13 8.51 -11.79c21.16,-29.31 50.53,-52.66 82.07,-69.95 38.59,-21.16 84.97,-35.68 129.05,-37.9 29.2,-1.47 65.51,2.46 89.02,22.27z"/>
|
||||
<path class="fil4" d="M443.41 795.72l-71.83 -65.67 -55.86 -0.95 -32.76 -66.42 -21.48 13.46c-19.73,-14.15 -75.71,-79.06 -86.48,-98.89 -3.49,-6.43 -7.23,-12.81 -9.78,-19.98 -5.19,-14.61 -12.57,-47.17 -11.26,-69.49l56.6 -24.21 -30.88 -16.81c70.47,-97.63 244.92,-132.36 289.25,-75.25 46.6,-52.35 207,-22.66 285.6,79.29l-25.29 16.79 53.55 25.29c0,4.89 0,9.99 0.21,15.09 -0.64,5.1 -1.28,10.41 -2.13,15.73 -7.17,26.46 -15.56,47.9 -29.11,71.62 -23.04,32.32 -44.54,54.78 -75.66,79.48l-27.63 -9.14 -38.25 64.39 -48.93 -0.63c-28.18,16.58 -49.18,42.36 -71.57,65.65l-24.82 -17.42 -21.51 18.05z"/>
|
||||
<path class="fil5" d="M466.36 746.2l-24.23 15.73 -64.82 -62.9 -47.6 -5.1 -27.84 -64.6c-15.45,-2.21 -27.86,10.84 -42.29,10.84 -44.09,-24.49 -65.47,-92.87 -55.47,-140.9 5.81,-11.63 22.95,-22.28 32.73,-30.39l-14.88 -22.95c32.37,-35.97 76.44,-59.3 121.98,-72.25 20.5,-5.83 39.88,-5.82 61.2,-4.25 35.97,2.65 54.39,28.71 63.33,40.59 13.19,-16.24 22.19,-36.12 63.97,-39.74 44.72,0 75.75,8.23 115.82,28.26 19.8,12.6 54.59,32.46 66.73,52.7l-14.88 21.46c13.32,15.55 26.66,18.13 33.15,38.68 4.33,43.56 -17.24,87.13 -56.53,130.69l-46.12 -10.2 -27.2 63.54 -45.69 3.61 -68 63.54 -23.38 -16.36z"/>
|
||||
<path class="fil4" d="M464.66 720.49c-2.1,-0.6 -2.47,-0.7 -4.68,-4.68 -2.09,-3.76 -1.29,-4.15 -13.39,-25.5 -1.51,-2.67 -3.05,-5.56 -5.1,-8.08 -2.7,-3.31 -4.77,-6.81 -8.93,-7.44 -10.67,-1.6 -19.83,1.92 -30.39,2.76 -4.04,0.32 -17.42,-0.26 -18.06,-7.01 -1.53,-16.08 0,-16.15 2.76,-82.03 0.85,-7.01 0.85,-7.01 0.64,-16.36 -0.42,-0.85 -0.85,-1.7 -1.28,-2.55 -2.76,-0.85 -5.74,-1.91 -8.71,-2.97 -2.76,-1.49 -5.52,-2.98 -8.29,-4.46 -0.85,-0.85 -1.7,-1.91 -2.76,-2.97 -1.06,-2.55 -2.34,-5.1 -3.61,-7.65 -0.85,-4.46 -1.7,-9.14 -2.76,-13.81 -0.85,-2.97 -1.91,-6.16 -2.97,-9.35 -1.91,-4.25 -3.83,-8.5 -5.95,-12.96 -2.34,-3.19 -4.89,-6.38 -7.44,-9.56 -7.86,-7.01 -7.86,-7.01 -11.26,-11.05 -1.49,-3.4 -1.49,-3.4 -2.12,-6.59 0,-5.1 0,-10.41 0,-15.73 0.85,-3.19 1.7,-6.59 2.76,-9.99 0,-1.49 0,-3.19 0,-4.89 -0.85,-0.64 -1.7,-1.49 -2.55,-2.34 -14.03,-5.74 -14.03,-5.74 -16.58,-7.44 -0.42,-0.64 -0.85,-1.28 -1.49,-2.13 0,-0.64 0,-1.49 0,-2.34 0.64,-1.49 1.49,-2.97 2.34,-4.46 3.83,-3.61 5.52,-6.38 17.64,-18.28 2.13,-1.49 2.13,-1.49 5.74,-2.97 2.34,0 4.89,0 7.44,0 11.9,3.19 23.8,6.59 35.7,9.99 1.06,0.85 2.13,1.7 3.4,2.76 0,0.85 0,1.7 0,2.76 -2.97,0 -5.95,0 -8.93,0 -4.68,-0.64 -9.35,-1.28 -14.24,-2.13 -9.57,0 -17.46,1.97 -23.38,10.84 0,2.34 0,2.34 0.85,3.4 9.6,2.21 18.66,2.66 28.48,3.61 4.67,0.85 9.56,1.7 14.45,2.76 0.64,0.85 0.64,0.85 0.64,2.76 -1.49,1.49 -12.54,7.01 -20.83,12.11 -3.75,4.37 -7.67,7.96 -2.55,12.33 16.01,8.07 29.49,12.57 48.88,16.79 0.85,0.85 0.85,0.85 1.49,4.89 -2.97,2.34 -6.33,4.47 -9.35,7.01 -10.55,8.88 -17.47,12.47 -14.66,25.71 3.59,16.99 22.83,21.88 38.46,20.4 9.18,-0.87 18.09,-3.93 26.99,-7.23 6.36,-2.36 10.61,-6.35 9.56,-12.54 -0.3,-1.78 -2.28,-3.04 -3.83,-4.25 -5.76,-4.51 -11.64,-8.02 -16.79,-13.18 0,-2 -0.39,-3.86 1.06,-5.31 16.58,0 33.36,0 50.15,0 2.05,1.02 1.28,3.03 1.28,5.1 -5.41,5.41 -11.73,8.68 -17.64,13.6 -2.45,2.04 -2.81,2.34 -2.98,5.1 -0.4,6.68 4.55,10.06 10.2,12.33 11.54,4.63 23.94,8.95 36.13,7.01 14.07,-2.23 24.77,-7.46 28.05,-21.68 2.1,-9.1 -4.17,-14.83 -10.63,-21.04 -4.04,-3.89 -8.93,-6.8 -13.39,-10.41 0,-3.44 -0.11,-3.11 2.55,-5.1 11.05,-2.55 11.05,-2.55 31.24,-8.29 6.21,-2.54 17.87,-5.39 19.34,-12.75 -3.73,-11.2 -17.23,-12.72 -25.5,-19.34 0,-0.85 0,-1.7 0,-2.55 1.7,-0.85 1.7,-0.85 15.09,-2.97 9.47,-0.56 19.28,-0.25 28.48,-2.76 1.06,-1.06 1.06,-1.06 1.7,-2.76 -0.43,-0.85 -0.85,-1.7 -1.49,-2.55 -3.61,-2.55 -6.68,-6.23 -10.84,-8.08 -6.99,-3.1 -14.26,-1.8 -21.89,-0.85 -6.49,0.81 -6.38,1.49 -10.41,1.49 -0.21,-1.06 -0.42,-2.34 -0.64,-3.61 0.64,-0.64 1.28,-1.28 2.12,-1.91 4.46,-1.7 8.77,-3.89 13.39,-5.1 6.97,-1.83 24.59,-8.24 31.24,-4.25 5.47,3.28 5.1,3.83 12.75,11.48 4.71,5.88 10.63,9.76 10.63,17.43 -1.49,1.49 -1.49,1.49 -7.01,4.25 -9.14,2.97 -9.14,2.97 -11.69,4.46 -0.85,0.85 -1.7,1.91 -2.55,2.98 0,6.8 0.55,13.83 0,20.83 -0.31,3.91 -0.88,8.1 -2.97,11.48 -4.92,7.93 -12.3,13.57 -18.28,20.83 -1.7,5.31 -3.61,10.63 -5.52,16.15 -1.7,8.93 -3.4,17.85 -5.1,26.99 -5.49,8.78 -12.2,11.1 -22.53,12.75 -2.34,1.91 -2.34,1.91 -3.61,3.83 0,11.05 0,11.05 2.12,40.16 2.76,25.5 2.76,25.5 4.89,51.64 0,2.12 0,4.46 0,6.8 -0.85,0.85 -1.91,1.91 -2.97,2.97 -5.53,2.76 -5.53,2.76 -8.71,3.61 -2.13,0 -4.25,0 -6.59,0 -5.74,-0.85 -11.69,-1.91 -17.64,-2.97 -3.4,-0.21 -6.8,-0.42 -10.41,-0.64 -4.04,1.28 -4.04,1.28 -6.8,3.19 -2.34,2.76 -4.68,5.52 -7.01,8.29 -6.59,10.41 -7.1,10.14 -13.6,22.95 -1.19,2.34 -1.72,5.04 -2.76,7.23 -1.11,2.34 -1.23,2.53 -3.4,3.61 -0.95,0.47 -2.15,0.72 -3.19,0.43z"/>
|
||||
<path class="fil5" d="M509.29 659.71c-9.99,-1.28 -9.99,-1.28 -27.63,-2.55 -4.04,-0.64 -8.08,-1.28 -12.11,-2.13 -7.01,0 -14.88,1.28 -42.5,3.4 -19.76,0 -19.76,0 -23.38,-0.64 -2.34,-1.7 -2.34,-1.7 -3.19,-3.19 0,-2.13 0,-4.25 0,-6.38 2.97,-10.2 5.95,-20.61 9.14,-31.03 -0.64,-14.88 -0.64,-14.88 -2.13,-29.75 0,-5.95 0,-11.9 0.21,-18.06 0.85,0 1.91,-0.21 2.97,-0.42 3.83,13.81 7.65,27.84 11.69,41.86 0,4.25 0,4.25 -2.76,20.4 0,2.12 0,4.25 0,6.38 0.85,1.7 0.85,1.7 2.34,2.97 0.64,0.21 1.49,0.42 2.34,0.85 9.14,0 18.28,0 27.63,0 4.67,-0.64 9.35,-1.28 14.03,-2.13 5.52,0.85 11.26,1.91 17,2.97 7.44,0 15.09,0 22.74,0 2.98,-1.7 2.98,-1.7 3.83,-3.19 0,-2.34 0,-4.68 0,-7.01 -0.64,-4.25 -1.28,-8.5 -2.12,-12.75 0,-2.76 0,-5.52 0,-8.5 2.76,-11.48 2.76,-11.48 8.5,-29.75 1.28,-2.97 2.55,-6.16 4.04,-9.35 0.64,0.21 1.28,0.42 2.13,0.64 0,2.13 0,4.25 0.21,6.59 -2.76,31.03 -2.76,31.03 -2.76,38.89 2.76,9.99 5.52,20.19 8.5,30.39 0,2.34 0,4.67 0,7.22 -0.43,0.64 -1.06,1.28 -1.7,2.13 -1.06,0.42 -2.34,1.06 -3.61,1.7 -4.46,0 -8.93,0.21 -13.39,0.43z"/>
|
||||
<path class="fil4" d="M272.34 545.17c-7.25,-16.69 -14.24,-34.69 -14.24,-53.13l45.27 7.86c0.95,15.67 7.01,32.58 11.48,47.18 9.04,29.53 55.04,99.03 54.83,99.46 -39.28,-14.21 -87.97,-79.83 -97.33,-101.37z"/>
|
||||
<path class="fil4" d="M664.08 546.38c7.25,-16.69 14.24,-34.69 14.24,-53.13l-45.27 7.86c-0.95,15.67 -5.98,32.94 -11.48,47.18 -15.07,39 -55.04,99.03 -54.83,99.45 39.28,-14.2 87.97,-79.83 97.33,-101.37z"/>
|
||||
<path class="fil6" d="M488.04 628.47c-3.91,-0.29 -7.59,-2.09 -11.48,-2.55 -5.07,-0.6 -10.2,-0.87 -15.51,-0.64 -4.29,0.19 -8.44,1.63 -12.75,2.13 -3.17,0.36 -6.63,0.5 -9.99,0 -1.05,-0.16 -2.73,-1 -2.97,-2.34 -0.89,-4.83 -1.51,-10.46 1.49,-14.45 4.9,5.04 5.42,9.03 12.11,8.93 11.27,-0.85 22.2,0 33.36,0 5.03,-0.23 8.11,-5.39 11.48,-8.29 1.89,3.78 1.66,9.38 1.49,13.6 -0.03,0.77 -0.54,1.86 -1.49,2.34 -1.75,0.88 -3.78,1.42 -5.74,1.28z"/>
|
||||
<path class="fil6" d="M487.69 570.9c-6.5,2.99 -34.02,1.71 -42.97,-1.09 -2.31,7.49 -5.23,15.73 -7.36,23.41 -1.42,0 -6.01,-18.8 -7.76,-23.18 -0.54,-3.78 0.37,-7.69 3.69,-8.73 19.09,1.79 45.77,3.34 64.84,0.86 5.27,0.54 4.41,4.44 3.51,7.44 -2.02,7.63 -4.3,15.61 -7.95,23.68 -3.54,-7.24 -5.78,-21.16 -6,-22.39z"/>
|
||||
<path class="fil4" d="M418.54 493.53c-6.76,-4.93 -16.44,-14.36 -18.06,-24.01 4.97,-0.89 7.45,-0.32 9.99,0.64 9.47,5.61 27.74,14.37 39.53,13.6 0,5.66 -3.92,7.38 -8.71,9.77 -6.88,3.44 -13.18,6.97 -22.74,0z"/>
|
||||
<path class="fil4" d="M512.6 493.04c6.76,-4.93 16.44,-14.36 18.06,-24.01 -4.97,-0.89 -7.45,-0.31 -9.99,0.64 -9.47,5.61 -27.74,14.37 -39.53,13.6 0,5.66 3.92,7.38 8.71,9.78 6.88,3.44 13.18,6.97 22.74,0z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.889825 0 0 1 -630.337 319.27)">
|
||||
<text x="1100.58" y="686.74" class="fil0 str3 fnt0">Est. 15</text>
|
||||
</g>
|
||||
<g>
|
||||
<path class="fil3" d="M585.49 167.61l0 -12.77 20.12 2.78c27.99,3.87 55.95,8.09 83.57,14.11 25.86,5.64 51.35,12.83 76.64,20.6l2.45 -5.09 14.73 4.83c1.53,0.5 3.06,1.02 4.58,1.54l11.99 4.09 0 12.67c0,10.61 0,21.22 0,31.83l0 24.73 -23.41 -7.98c-1.4,-0.48 -2.8,-0.96 -4.21,-1.42l-8.16 -2.68 -2.39 -6.56c-0.82,-0.25 -1.65,-0.5 -2.47,-0.74 0,10.17 0,20.34 0,30.51l0 15.22c3.37,0.97 6.73,1.96 10.09,2.95l2.51 -5.26 14.91 5.09c1.46,0.5 2.92,1 4.39,1.5l11.99 4.09 0 12.67c0,10.61 0,21.22 0,31.83l0 24.73 -23.41 -7.98c-1.46,-0.5 -2.93,-1 -4.39,-1.5l-8.06 -2.75 -2.34 -6.51c-26.83,-8.48 -53.88,-16.34 -81.37,-22.41 -27.25,-6.01 -54.87,-10.16 -82.5,-14l-15.26 -2.12 0 -15.41c0,-0.97 0,-1.93 0,-2.9l0 -14.22c-3.27,4.73 -7.51,8.91 -12.46,12.52 -12.2,8.87 -28.68,12.53 -43.4,14.52 -13.53,1.83 -27.22,2.41 -40.86,2.24 -26.15,-0.32 -52.02,-4.23 -77.12,-11.57 -0.66,-0.19 -1.35,-0.41 -2.05,-0.61l-5.27 3.06 -7.28 -2.11c-1.39,-0.4 -2.78,-0.79 -4.16,-1.21l-4.87 -1.48 0 13.89 -16.06 1.49c-19.04,1.77 -38.05,3.91 -57.01,6.41l-20.01 2.64 0 -20.19c0,-0.97 0,-1.93 0,-2.9l0 -13.07 8.65 -2.66c0,-4.7 0,-9.4 0,-14.11 0,-0.47 0,-0.95 0,-1.42 -23.81,4.02 -47.51,8.71 -71.05,14.07 0,2.72 0,5.43 0,8.15 0,2.65 0,5.3 0,7.94l8.65 -0.71 0 19.2c0,0.97 0,1.94 0,2.9l0 13.65 -13.2 3.47c-19.08,5.01 -38.04,10.49 -56.85,16.43l-23.03 7.27 0 -24.15c0,-0.97 0,-1.94 0,-2.9l0 -10.7 8.71 -4.58c0,-15.39 0,-30.79 0,-46.18 0,-12.19 0,-24.38 0,-36.57l-8.71 1.32 0 -20.58c0,-0.96 0,-1.92 0,-2.88l0 -12.98 12.37 -3.9c19.36,-6.11 38.87,-11.76 58.51,-16.92l22.2 -5.83 0 22.95c0,0.96 0,1.92 0,2.88l0 11.68 -8.65 3.69c0,3.59 0,7.18 0,10.77 23.55,-5.21 47.25,-9.77 71.05,-13.68 0,-1.58 0,-3.15 0,-4.73 0,-2.58 0,-5.16 0,-7.74l-8.65 -0.3 0 -17.11c0,-0.96 0,-1.92 0,-2.88l0 -15.52 15.39 -2.03c19.41,-2.56 38.87,-4.75 58.37,-6.54l19.32 -1.78 0 19.41c0,0.96 0,1.92 0,2.88l0 13.58 -8.71 2.33c0,14.5 0,29 0,43.5 0,13.68 0,27.36 0,41.04l1.78 0.19 2.04 -3.2c6.66,-10.44 13.36,-20.85 20.09,-31.25l0.44 -0.68c-1.99,-1.63 -3.87,-3.42 -5.62,-5.37 -7.14,-7.95 -10.89,-17.61 -10.89,-28.3 0,-17.72 9.58,-31.56 23.93,-41.18 20.84,-13.97 48.76,-17.32 73.33,-17.13 12.16,0.1 24.32,1.29 36.26,3.62 13.77,2.69 27.28,7.03 40.53,11.59 1.26,0.43 2.75,1.02 4.19,1.47l6.26 -2.82 7.26 3.27c1.21,0.54 2.41,1.11 3.63,1.64l2.95 1.29zm4.67 24.94l-1.03 1.25c-6.36,7.73 -12.69,15.48 -18.98,23.27 5.51,3.91 10.32,8.66 14.22,14.3 5.34,7.73 8.54,16.51 8.54,25.97 0,7.95 -2.12,15.08 -5.86,21.33l7.09 -0.49c0,-13.46 0,-26.92 0,-40.38 0,-14.68 0,-29.36 0,-44.04l-3.98 -1.22z"/>
|
||||
<path class="fil0" d="M312.44 256.1c-29.78,4.78 -59.39,10.6 -88.75,17.46 0,5.06 0,10.13 0,15.19 0,5.85 0,11.7 0,17.54l8.65 -0.7 0 9.6c0,0.97 0,1.94 0,2.9l0 6.83 -6.6 1.73c-19.22,5.05 -38.31,10.57 -57.26,16.55l-11.51 3.63 0 -12.07c0,-0.97 0,-1.94 0,-2.9l0 -5.35 4.73 -2.49c0.9,-0.47 2.88,-1.5 3.98,-2.33 0,-17.09 0,-34.19 0,-51.29 0,-15.62 0,-31.24 0,-46.86l-8.71 1.32 0 -10.29c0,-0.96 0,-1.92 0,-2.88l0 -6.49 6.19 -1.95c19.23,-6.07 38.6,-11.68 58.09,-16.8l11.1 -2.92 0 11.48c0,0.96 0,1.92 0,2.88l0 5.84 -5.37 2.3c-0.77,0.33 -2.3,1 -3.28,1.62 0,6.26 0,12.53 0,18.79 0,2.89 0,5.78 0,8.67 29.37,-6.77 58.98,-12.5 88.75,-17.21 0,-4.09 0,-8.18 0,-12.26 0,-5.43 0,-10.87 0,-16.3 -0.03,-0 -0.07,-0 -0.1,-0l-8.55 -0.29 0 -8.55c0,-0.96 0,-1.92 0,-2.88l0 -7.76 7.69 -1.01c19.3,-2.54 38.64,-4.72 58.02,-6.51l9.66 -0.89 0 9.7c0,0.96 0,1.92 0,2.88l0 6.79 -6.56 1.76c-0.53,0.14 -1.38,0.37 -2.15,0.65 0,16.74 0,33.48 0,50.22 0,16.33 0,32.65 0,48.98 0.3,0.04 0.58,0.07 0.82,0.09l7.9 0.86 0 7.94c0,0.97 0,1.93 0,2.9l0 8.07 -8.03 0.75c-19.15,1.78 -38.27,3.93 -57.34,6.45l-10.01 1.32 0 -10.09c0,-0.97 0,-1.93 0,-2.9l0 -6.53 6.25 -1.92c0.57,-0.18 1.58,-0.5 2.4,-0.85 0,-6.84 0,-13.69 0,-20.53 0,-3.95 0,-7.9 0,-11.85zm244.44 -36.64c0.91,0.46 1.81,0.93 2.71,1.42 6.98,3.84 12.97,8.95 17.51,15.53 4.31,6.25 6.97,13.29 6.97,20.94 0,12.38 -6.48,22.01 -16.24,29.11 -10.83,7.88 -26.34,11.14 -39.38,12.9 -13.09,1.77 -26.37,2.33 -39.57,2.17 -25.37,-0.31 -50.38,-4.09 -74.75,-11.22 -1.6,-0.47 -3.98,-1.2 -5.85,-1.51 -0.64,0.3 -1.35,0.72 -1.84,1l-3.28 1.91 -3.64 -1.06c-1.35,-0.39 -2.7,-0.77 -4.05,-1.18l-11.16 -3.4 6.28 -9.83c6.65,-10.42 13.34,-20.82 20.06,-31.2l3.58 -5.52 6.32 1.83c1.28,0.37 2.56,0.72 3.83,1.08l6.49 1.79 0 6.64c0.42,0.31 0.96,0.62 1.26,0.79 6.76,3.79 17.05,6.04 24.59,7.52 10.98,2.15 22.17,3.56 33.37,3.75 9.18,0.16 19.28,-0.3 28.17,-2.79 2.68,-0.75 5.73,-1.9 7.88,-3.72 0.11,-0.09 0.28,-0.24 0.44,-0.4 -1,-0.54 -2.41,-1.04 -3.05,-1.24 -2.81,-0.88 -6.17,-1.4 -9.08,-1.84 -5.63,-0.86 -11.33,-1.49 -16.99,-2.05 -6.87,-0.68 -13.75,-1.29 -20.64,-1.79 -9.96,-0.73 -20.3,-1.36 -30.19,-2.72 -6.34,-0.87 -12.6,-2.25 -18.72,-4.1 -8.85,-2.68 -17.06,-7.07 -23.29,-14.01 -5.68,-6.33 -8.62,-13.88 -8.62,-22.39 0,-14.68 8.11,-25.85 20.01,-33.83 19.22,-12.88 45.76,-15.81 68.34,-15.63 11.61,0.09 23.23,1.23 34.63,3.45 13.22,2.58 26.62,6.89 39.34,11.28 2.12,0.73 5.28,1.93 7.54,2.36 0.61,-0.07 1.69,-0.52 2.17,-0.73l3.63 -1.63 3.63 1.63c1.24,0.56 2.47,1.13 3.72,1.68l10.75 4.69 -7.45 9.05c-7.38,8.97 -14.72,17.98 -22,27.03l-3.42 4.25zm-16.21 -10.63c-0.96,-0.62 -2.12,-1.23 -2.77,-1.57 -16.34,-8.43 -34.42,-11.98 -52.7,-12.32 -7.72,-0.14 -15.66,0.33 -23.21,2.02 -3.31,0.74 -6.82,1.95 -9.57,3.99 -0.09,0.07 -0.2,0.16 -0.33,0.26 1.49,0.56 3.47,1 4.34,1.16 3.03,0.58 6.34,0.86 9.41,1.16 5.83,0.56 11.69,1.02 17.53,1.47 7.16,0.55 14.3,1.19 21.44,1.9 10.6,1.06 21.61,2.55 31.93,5.23 1.17,0.3 2.33,0.62 3.49,0.96l0.43 -4.26zm120.41 53.5c0,2.04 0,4.09 0,6.13 0,3.21 0,6.41 0,9.62 37.94,7.84 75.51,17.39 112.54,28.77 0.05,0.01 0.1,0.03 0.15,0.05l2.38 -5 7.46 2.54c1.46,0.5 2.92,1 4.39,1.5l6 2.04 0 6.33c0,10.61 0,21.22 0,31.83l0 12.37 -11.71 -3.99c-1.46,-0.5 -2.93,-1 -4.39,-1.5l-4.03 -1.38 -1.44 -4.01c-0.23,-0.65 -0.66,-1.71 -1.19,-2.2 -0.69,-0.64 -2.02,-1.14 -2.89,-1.41 -27.41,-8.69 -55.08,-16.75 -83.18,-22.94 -27.48,-6.06 -55.33,-10.25 -83.19,-14.12l-7.63 -1.06 0 -7.71c0,-0.97 0,-1.93 0,-2.9l0 -8.27 8.25 -0.56c0.12,-0.01 0.26,-0.02 0.4,-0.03 0,-16.21 0,-32.43 0,-48.64 0,-16.83 0,-33.66 0,-50.48 -0.85,-0.34 -1.83,-0.65 -2.4,-0.83l-6.25 -1.92 0 -6.54c0,-0.96 0,-1.92 0,-2.88l0 -10.16 10.06 1.39c27.77,3.84 55.5,8.02 82.9,13.99 28.06,6.12 55.68,14.11 83.1,22.63 0.03,0.01 0.07,0.02 0.1,0.03l2.4 -4.98 7.37 2.42c1.5,0.49 2.99,1 4.49,1.51l5.99 2.04 0 6.33c0,10.61 0,21.22 0,31.83l0 12.37 -11.7 -3.99c-1.43,-0.49 -2.86,-0.98 -4.3,-1.45l-4.08 -1.34 -1.47 -4.03c-0.25,-0.67 -0.67,-1.66 -1.21,-2.17 -0.69,-0.64 -1.9,-1.13 -2.78,-1.4 -34.29,-10.42 -69.05,-19.23 -104.13,-26.56 0,3.69 0,7.38 0,11.07 22.91,4.52 45.72,9.61 68.34,15.44 0.11,0.03 0.23,0.06 0.36,0.09l2.54 -5.02 6.99 1.93c1.41,0.39 2.82,0.82 4.23,1.19l6.58 1.75 0 6.81c0,10.38 0,20.77 0,31.15l0 11.64 -11.22 -3.12c-1.44,-0.4 -2.88,-0.82 -4.32,-1.22l-4.24 -1.17 -1.62 -4.08c-0.23,-0.58 -0.73,-1.72 -1.21,-2.15 -0.57,-0.51 -1.79,-0.92 -2.51,-1.1 -21.16,-5.45 -42.49,-10.25 -63.92,-14.54z"/>
|
||||
<path class="fil7" d="M321.29 245.75c-35.49,5.41 -70.97,12.3 -106.45,20.8 0,7.37 0,14.76 0,22.15 0,7.37 0,14.76 0,22.15 0,1.79 0.71,2.98 1.97,3.66 1.28,0.69 3.5,0.87 6.68,0.61 0,0.98 0,1.96 0,2.96 -19.27,5.06 -38.47,10.61 -57.68,16.67 0,-1 0,-1.98 0,-2.96 3.24,-1.72 5.46,-3.19 6.68,-4.51 1.26,-1.37 1.91,-2.94 1.91,-4.73 0,-17.39 0,-34.75 0,-52.14 0,-17.39 0,-34.76 0,-52.14 0,-1.83 -0.65,-2.98 -1.91,-3.57 -1.22,-0.56 -3.43,-0.68 -6.68,-0.19 0,-0.98 0,-1.96 0,-2.94 19.2,-6.06 38.41,-11.62 57.68,-16.68 0,0.98 0,1.96 0,2.94 -3.24,1.39 -5.48,2.69 -6.74,4.03 -1.22,1.3 -1.91,2.86 -1.91,4.69 0,6.62 0,13.25 0,19.85 0,6.6 0,13.23 0,19.82 35.48,-8.5 70.97,-15.39 106.45,-20.8 0,-6.59 0,-13.23 0,-19.82 0,-6.6 0,-13.23 0,-19.84 0,-1.83 -0.65,-3.08 -1.91,-3.94 -1.22,-0.83 -3.43,-1.28 -6.68,-1.39 0,-0.98 0,-1.96 0,-2.94 19.2,-2.55 38.41,-4.69 57.68,-6.47 0,0.98 0,1.96 0,2.94 -3.24,0.85 -5.48,1.84 -6.74,2.94 -1.22,1.06 -1.84,2.5 -1.84,4.32 0,17.39 0,34.75 0,52.14 0,17.39 0,34.75 0,52.14 0,1.79 0.62,3.14 1.84,3.97 1.26,0.85 3.5,1.4 6.74,1.75 0,0.98 0,1.96 0,2.96 -19.27,1.79 -38.47,3.94 -57.68,6.49 0,-1 0,-1.98 0,-2.96 3.12,-0.98 5.35,-2.03 6.68,-3.23 1.28,-1.16 1.91,-2.64 1.91,-4.43 0,-7.39 0,-14.78 0,-22.15 0,-7.39 0,-14.78 0,-22.15zm254.18 -63.34c-7.38,8.96 -14.75,18.03 -22.07,27.12 -1.27,-0.59 -2.54,-1.16 -3.75,-1.74 0.06,-0.59 0.13,-1.07 0.13,-1.44 0,-2.01 -2.63,-4.39 -7.82,-7.08 -16.11,-8.33 -34.97,-12.92 -56.6,-13.32 -9.6,-0.18 -18.07,0.57 -25.37,2.24 -5.35,1.22 -9.61,3.1 -12.91,5.56 -3.31,2.47 -4.96,5.14 -4.96,7.96 0,4.66 4.19,7.74 12.53,9.31 4.39,0.83 13.68,1.63 27.92,2.75 7.06,0.56 14.12,1.17 21.24,1.89 12.66,1.27 22.89,2.96 30.72,4.99 7.76,2.01 14.71,4.59 20.73,7.93 6.13,3.39 11.01,7.66 14.56,12.8 3.57,5.17 5.34,10.47 5.34,15.96 0,8.65 -4.23,15.91 -12.59,21.97 -7.61,5.51 -19.35,9.14 -35.29,11.29 -11.98,1.62 -24.67,2.27 -38.35,2.11 -24.42,-0.3 -48.49,-3.88 -72.37,-10.83 -4.99,-1.45 -8.01,-2.03 -9.03,-1.98 -1.14,0.06 -3.05,0.87 -5.53,2.31 -1.34,-0.37 -2.67,-0.74 -3.94,-1.11 6.68,-10.46 13.35,-20.82 20.03,-31.17 1.27,0.39 2.61,0.76 3.94,1.11 0,0.54 0,0.92 0,1.18 0,2.7 1.93,5.08 5.79,7.24 5.87,3.3 14.95,6.12 27.15,8.5 12.34,2.41 23.97,3.7 34.98,3.9 11.96,0.21 22.26,-0.73 30.71,-3.11 4.71,-1.32 8.43,-3.17 11.19,-5.47 2.83,-2.36 4.2,-4.86 4.2,-7.56 0,-4.1 -3.23,-7.28 -9.86,-9.35 -4.62,-1.44 -13.92,-2.91 -27.92,-4.29 -6.99,-0.69 -13.93,-1.25 -20.86,-1.77 -13.99,-1.05 -23.9,-1.94 -29.7,-2.72 -5.72,-0.77 -11.5,-2.05 -17.3,-3.81 -8.19,-2.48 -14.66,-6.25 -19.33,-11.47 -4.23,-4.73 -6.42,-10.2 -6.42,-16.5 0,-10.44 5.4,-19.34 16.15,-26.55 14.04,-9.42 35.23,-14.42 63.47,-14.21 11.77,0.09 22.84,1.29 33.01,3.29 10.18,2.01 22.88,5.71 38.15,11.01 5.27,1.83 8.46,2.69 9.67,2.79 1.84,0.14 4.01,-0.31 6.55,-1.46 1.27,0.57 2.55,1.13 3.82,1.7zm76.76 69.08c0,5.62 0,11.25 0,16.89 0,5.64 0,11.25 0,16.89 39.49,7.93 79.07,17.79 118.6,29.95 2.76,0.85 4.82,1.17 6.23,0.83 1.45,-0.35 2.67,-1.39 3.5,-3.25 1.46,0.48 2.92,0.98 4.45,1.5 0,10.59 0,21.17 0,31.76 -1.53,-0.52 -2.99,-1.02 -4.45,-1.5 -0.83,-2.46 -2.04,-4.34 -3.5,-5.67 -1.4,-1.29 -3.48,-2.49 -6.23,-3.36 -27.96,-8.83 -55.85,-16.92 -83.88,-23.1 -27.81,-6.13 -55.83,-10.35 -83.75,-14.23 0,-0.98 0,-1.98 0,-2.96 3.24,-0.22 5.45,-0.73 6.68,-1.5 1.26,-0.79 1.91,-2.11 1.91,-3.97 0,-17.35 0,-34.7 0,-52.05 0,-17.33 0,-34.68 0,-52.03 0,-1.89 -0.65,-3.35 -1.91,-4.51 -1.22,-1.12 -3.43,-2.22 -6.68,-3.2 0,-0.98 0,-1.96 0,-2.94 27.35,3.79 54.86,7.92 82.1,13.86 27.45,5.98 54.85,13.81 82.23,22.34 2.77,0.86 4.78,1.23 6.23,0.87 1.41,-0.36 2.61,-1.46 3.5,-3.27 1.46,0.52 2.92,1 4.45,1.53 0,10.59 0,21.17 0,31.74 -1.53,-0.53 -2.99,-1.02 -4.45,-1.53 -0.89,-2.42 -2.08,-4.33 -3.5,-5.65 -1.44,-1.34 -3.47,-2.52 -6.23,-3.36 -38.44,-11.68 -76.88,-21.14 -115.3,-28.84 0,9.72 0,19.46 0,29.17 24.93,4.78 49.88,10.26 74.85,16.68 2.69,0.69 4.76,0.9 6.17,0.48 1.45,-0.43 2.67,-1.53 3.56,-3.44 1.46,0.41 2.93,0.83 4.39,1.26 0,10.33 0,20.68 0,31 -1.46,-0.43 -2.92,-0.85 -4.39,-1.26 -0.89,-2.33 -2.1,-4.16 -3.56,-5.45 -1.4,-1.24 -3.48,-2.32 -6.17,-3.01 -24.97,-6.42 -49.92,-11.9 -74.85,-16.68z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="fil3" d="M597.61 829.61l0 -2.23 109.55 0 0 25.47 -9.52 1.3c-0.76,0.91 -1.54,2.03 -2.11,2.84l-22.21 31.27 0 15.4 3.61 1.03 0 23.96 -49.15 0 0 -23.96 3.67 -1.05 0 -15.38 -13.44 -18.92c-0.59,1.99 -1.38,3.88 -2.35,5.65 3.98,5.18 6.13,11.65 6.13,19.15 0,10.47 -4.01,19.7 -12.28,26.23 -3.96,3.13 -8.5,5.28 -13.38,6.56 -5.02,1.32 -10.37,1.73 -15.55,1.73l-64.59 0 0 -9.47c-13.15,6.61 -27.35,10.8 -42.23,10.8 -13.51,0 -26.73,-3.04 -37.67,-11.29 -4.59,-3.46 -8.35,-7.41 -11.32,-11.78 -0.99,2.53 -2.28,4.94 -3.93,7.16 -9.81,13.22 -27.95,15.9 -43.29,15.9 -11.55,0 -24.24,-1.59 -34.3,-7.68 -0.31,-0.19 -0.61,-0.38 -0.92,-0.57l0 6.92 -52.78 0 0 -17.67 -9.17 -13.33 -0.96 0 0 5.88 3.57 0.93 0 24.19 -49.02 0 0 -24 3.57 -1.01 0 -51.25 -3.57 -1.01 0 -24 60.18 0c5.32,0 10.97,0.22 16.21,1.24 4.73,0.93 9.25,2.62 13.29,5.26l0 -6.51 49.05 0 0 24.23 -3.61 0.93 0 31.22c0,1.83 -0.02,4.62 0.34,6.56 1.84,1.21 7.07,1.45 8.74,1.45 1.56,0 6.9,-0.25 8.71,-1.39 0.37,-1.92 0.35,-4.76 0.35,-6.62l0 -31.37 -3.57 -1.01 0 -24 47.68 0 0 14.18c0.85,-0.81 1.74,-1.59 2.66,-2.36 11.62,-9.62 26.08,-13.15 40.92,-13.15 4.98,0 9.96,0.45 14.84,1.46 4.73,0.98 9.4,2.45 13.92,4.17l3.26 -2.67 9.02 4.84 0 -6.47 64.08 0c4.93,0 10.13,0.31 14.93,1.49 0.88,0.22 1.74,0.46 2.59,0.74zm-78.03 24.59l-5.5 11.25 5.5 0 0 -11.25zm-192.32 33.97c-0.89,0.76 -1.82,1.47 -2.8,2.14l3.08 4.38c-0.2,-2.08 -0.28,-4.16 -0.28,-6.24l0 -0.28zm134.01 -18.48c-1.9,2.39 -2.61,5.15 -2.61,8.51 0,3.26 0.72,5.9 2.61,8.19l0 -16.7z"/>
|
||||
<g>
|
||||
<path class="fil8" d="M603.93 840.05l0 -6.35 42.66 0 0 13.5 -1.65 0.26 7.62 11.35 7.86 -11.37 -1.63 -0.27 0 -13.48 42.04 0 0 13.62 -5.47 0.75c-0.38,0.05 -0.76,0.15 -1.05,0.4 -1.32,1.13 -2.94,3.43 -3.94,4.84l-23.38 32.92 0 22.18 3.61 1.03 0 12.87 -36.5 0 0 -12.87 3.67 -1.05 0 -22.17 -23.38 -32.92c-0.95,-1.34 -2.45,-3.48 -3.73,-4.66 1.58,3.5 2.3,7.39 2.3,11.52 0,6.11 -1.86,11.31 -5.37,15.39 5.1,4.5 7.88,10.76 7.88,18.56 0,8.53 -3.13,15.94 -9.87,21.26 -3.28,2.59 -7.04,4.35 -11.07,5.41 -4.48,1.18 -9.32,1.52 -13.94,1.52l-58.27 0 0 -12.89 3.57 -1.01 0 -60.82 -3.57 -1.01 0 -12.89 57.75 0c4.4,0 9.14,0.25 13.42,1.3 3.77,0.93 7.24,2.55 10.3,4.95 0.04,0.03 0.09,0.07 0.13,0.1zm-48.8 23.88l22.78 0c1.14,0 4.47,-0.09 5.47,-0.7 0.4,-0.3 0.41,-1.42 0.41,-1.83 0,-0.37 -0.05,-1.36 -0.24,-1.75 -1.08,-0.66 -4.5,-0.78 -5.64,-0.78l-22.78 0 0 5.06zm0 33.23l21.84 0c1.88,0 6.28,-0.15 7.93,-1.19 0.94,-0.59 1,-1.84 1,-2.84 0,-1.06 -0.08,-2.25 -1.05,-2.87 -1.58,-1.02 -6.08,-1.16 -7.89,-1.16l-21.84 0 0 8.07zm-281.99 -5.84l0 17.08 3.57 0.93 0 12.99 -36.37 0 0 -12.89 3.57 -1.01 -0 -60.82 -3.57 -1.01 0 -12.89 53.86 0c4.9,0 10.17,0.18 14.99,1.12 3.98,0.78 7.78,2.19 11.17,4.43 3.98,2.63 6.97,6.22 8.88,10.59 1.77,4.05 2.58,8.36 2.58,12.77 0,12.95 -6.29,21.33 -16.61,25.51l9.57 13.6c1.13,1.6 3.23,4.71 4.69,5.98 0.18,0.16 0.45,0.19 0.68,0.2l5.91 0.39 0 14.03 -40.14 0 0 -13.32 -12.16 -17.69 -10.61 0zm0 -25.16l19.29 0c2.24,0 4.92,0.03 7.14,-0.28 0.76,-0.11 1.47,-0.32 2.15,-0.69 0.92,-0.5 0.92,-1.76 0.92,-2.69 0,-0.95 -0.01,-2.17 -0.95,-2.68 -0.66,-0.36 -1.35,-0.61 -2.09,-0.71 -2.19,-0.3 -4.95,-0.24 -7.16,-0.24l-19.29 0 0 7.29zm60.45 -18.55l-3.57 -1.01 0 -12.89 36.41 0 0 13 -3.61 0.93 0 36.12c0,2.51 0.01,5.86 0.57,8.31 0.2,0.87 0.53,1.65 1.15,2.31 3.05,3.21 9.57,3.71 13.68,3.71 4.05,0 10.69,-0.48 13.68,-3.68 0.61,-0.65 0.93,-1.48 1.13,-2.34 0.55,-2.45 0.57,-5.81 0.57,-8.31l-0 -36.16 -3.57 -1.01 0 -12.89 35.04 0 0 12.87 -3.57 1.02 0 40.86c0,7.44 -1.14,15.72 -5.69,21.85 -8.42,11.35 -25.15,13.35 -38.21,13.35 -10.3,0 -22.05,-1.33 -31.03,-6.76 -4.87,-2.95 -8.49,-7.1 -10.47,-12.45 -1.88,-5.07 -2.5,-10.61 -2.5,-15.99l-0 -40.85zm147.91 24.18l40.56 0 0 12.87 -3.61 1.03 0 12.1 3.61 1 0 9.87 -3.19 1.82c-13.82,7.87 -29.03,13.18 -45.08,13.18 -12.11,0 -24.04,-2.62 -33.86,-10.01 -11.69,-8.81 -17.15,-21.1 -17.15,-35.66 0,-13.52 4.79,-25.21 15.3,-33.92 10.45,-8.66 23.55,-11.69 36.88,-11.69 4.55,0 9.1,0.4 13.56,1.33 4.8,1 9.55,2.54 14.11,4.33 0.57,0.23 1.49,0.59 2.29,0.84l2.8 -2.29 10.64 5.71 -14.4 29.48 -10.66 -5.52 -0.11 -3.47c-0,-0 -0.01,-0.01 -0.01,-0.01 -2.06,-1.56 -5.36,-2.64 -7.82,-3.32 -3.49,-0.96 -7.12,-1.58 -10.75,-1.58 -5.76,0 -11.19,1.36 -15.64,5.16 -4.7,4.01 -6.63,9.04 -6.63,15.18 0,5.92 1.91,10.75 6.42,14.62 2.61,2.23 5.62,3.61 8.83,4.39l0 -29.02 12.91 0 0.99 3.57zm-0.73 26.02c1.89,-0.21 3.77,-0.53 5.63,-0.98 1.91,-0.45 3.85,-1.03 5.71,-1.77l0 -0.04 -10.59 0 -0.75 2.79z"/>
|
||||
<path class="fil8" d="M603.93 840.05l0 -6.35 42.66 0 0 13.5 -1.65 0.26 7.62 11.35 7.86 -11.37 -1.63 -0.27 0 -13.48 42.04 0 0 13.62 -5.47 0.75c-0.38,0.05 -0.76,0.15 -1.05,0.4 -1.32,1.13 -2.94,3.43 -3.94,4.84l-23.38 32.92 0 22.18 3.61 1.03 0 12.87 -36.5 0 0 -12.87 3.67 -1.05 0 -22.17 -23.38 -32.92c-0.95,-1.34 -2.45,-3.48 -3.73,-4.66 1.58,3.5 2.3,7.39 2.3,11.52 0,6.11 -1.86,11.31 -5.37,15.39 5.1,4.5 7.88,10.76 7.88,18.56 0,8.53 -3.13,15.94 -9.87,21.26 -3.28,2.59 -7.04,4.35 -11.07,5.41 -4.48,1.18 -9.32,1.52 -13.94,1.52l-58.27 0 0 -12.89 3.57 -1.01 0 -60.82 -3.57 -1.01 0 -12.89 57.75 0c4.4,0 9.14,0.25 13.42,1.3 3.77,0.93 7.24,2.55 10.3,4.95 0.04,0.03 0.09,0.07 0.13,0.1zm-48.8 23.88l22.78 0c1.14,0 4.47,-0.09 5.47,-0.7 0.4,-0.3 0.41,-1.42 0.41,-1.83 0,-0.37 -0.05,-1.36 -0.24,-1.75 -1.08,-0.66 -4.5,-0.78 -5.64,-0.78l-22.78 0 0 5.06zm0 33.23l21.84 0c1.88,0 6.28,-0.15 7.93,-1.19 0.94,-0.59 1,-1.84 1,-2.84 0,-1.06 -0.08,-2.25 -1.05,-2.87 -1.58,-1.02 -6.08,-1.16 -7.89,-1.16l-21.84 0 0 8.07zm-281.99 -5.84l0 17.08 3.57 0.93 0 12.99 -36.37 0 0 -12.89 3.57 -1.01 -0 -60.82 -3.57 -1.01 0 -12.89 53.86 0c4.9,0 10.17,0.18 14.99,1.12 3.98,0.78 7.78,2.19 11.17,4.43 3.98,2.63 6.97,6.22 8.88,10.59 1.77,4.05 2.58,8.36 2.58,12.77 0,12.95 -6.29,21.33 -16.61,25.51l9.57 13.6c1.13,1.6 3.23,4.71 4.69,5.98 0.18,0.16 0.45,0.19 0.68,0.2l5.91 0.39 0 14.03 -40.14 0 0 -13.32 -12.16 -17.69 -10.61 0zm0 -25.16l19.29 0c2.24,0 4.92,0.03 7.14,-0.28 0.76,-0.11 1.47,-0.32 2.15,-0.69 0.92,-0.5 0.92,-1.76 0.92,-2.69 0,-0.95 -0.01,-2.17 -0.95,-2.68 -0.66,-0.36 -1.35,-0.61 -2.09,-0.71 -2.19,-0.3 -4.95,-0.24 -7.16,-0.24l-19.29 0 0 7.29zm60.45 -18.55l-3.57 -1.01 0 -12.89 36.41 0 0 13 -3.61 0.93 0 36.12c0,2.51 0.01,5.86 0.57,8.31 0.2,0.87 0.53,1.65 1.15,2.31 3.05,3.21 9.57,3.71 13.68,3.71 4.05,0 10.69,-0.48 13.68,-3.68 0.61,-0.65 0.93,-1.48 1.13,-2.34 0.55,-2.45 0.57,-5.81 0.57,-8.31l-0 -36.16 -3.57 -1.01 0 -12.89 35.04 0 0 12.87 -3.57 1.02 0 40.86c0,7.44 -1.14,15.72 -5.69,21.85 -8.42,11.35 -25.15,13.35 -38.21,13.35 -10.3,0 -22.05,-1.33 -31.03,-6.76 -4.87,-2.95 -8.49,-7.1 -10.47,-12.45 -1.88,-5.07 -2.5,-10.61 -2.5,-15.99l-0 -40.85zm147.91 24.18l40.56 0 0 12.87 -3.61 1.03 0 12.1 3.61 1 0 9.87 -3.19 1.82c-13.82,7.87 -29.03,13.18 -45.08,13.18 -12.11,0 -24.04,-2.62 -33.86,-10.01 -11.69,-8.81 -17.15,-21.1 -17.15,-35.66 0,-13.52 4.79,-25.21 15.3,-33.92 10.45,-8.66 23.55,-11.69 36.88,-11.69 4.55,0 9.1,0.4 13.56,1.33 4.8,1 9.55,2.54 14.11,4.33 0.57,0.23 1.49,0.59 2.29,0.84l2.8 -2.29 10.64 5.71 -14.4 29.48 -10.66 -5.52 -0.11 -3.47c-0,-0 -0.01,-0.01 -0.01,-0.01 -2.06,-1.56 -5.36,-2.64 -7.82,-3.32 -3.49,-0.96 -7.12,-1.58 -10.75,-1.58 -5.76,0 -11.19,1.36 -15.64,5.16 -4.7,4.01 -6.63,9.04 -6.63,15.18 0,5.92 1.91,10.75 6.42,14.62 2.61,2.23 5.62,3.61 8.83,4.39l0 -29.02 12.91 0 0.99 3.57zm-0.73 26.02c1.89,-0.21 3.77,-0.53 5.63,-0.98 1.91,-0.45 3.85,-1.03 5.71,-1.77l0 -0.04 -10.59 0 -0.75 2.79z"/>
|
||||
</g>
|
||||
<text x="239.82" y="916" class="fil1 fnt1">RUGBY</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 44 KiB |
44
test/visual/assets/clippath-8.svg
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="210" height="144" viewBox="0 0 105 77" xml:space="preserve">
|
||||
<desc>Created with Fabric.js 1.0.12</desc>
|
||||
<linearGradient id="linear" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="77" >
|
||||
<stop offset="0" style="stop-color:#cc5232"/>
|
||||
<stop offset="0.3" style="stop-color:#b0c72d"/>
|
||||
<stop offset="0.6" style="stop-color:aqua"/>
|
||||
<stop offset="1" style="stop-color:teal"/>
|
||||
</linearGradient>
|
||||
<clipPath id="CLIPPATH_0" >
|
||||
<path fill-rule="evenodd" fill="#99CCFF" d="M62.022,30.848c4.251,0.038,9.565-2.206,13.424-3.924
|
||||
c3.131-1.396,4.47-1.299,7.833,0.263c2.18,1.012,3.883-1.551,5.824-2.048c0.243-0.062,0.537,0.464,0.374,0.652
|
||||
c-0.553,0.639-2.932,1.753-2.679,2.821c0.184,0.779,4.081,0.817,5.226,1.347c1.008,0.653-3.22,0.665-3.17,1.028
|
||||
c1.038,0.191,2.175,0.279,3.03,0.703c0.482,0.238-0.707,0.815-1.245,0.731c0.194,0.103,0.711,0.257,0.583,0.436
|
||||
c-0.144,0.891-3.265,0.128-4.132-0.003c-0.688-0.104-3.754-0.843-3.892,0.039c-0.092,0.586,0.47,1.079,0.133,2.617
|
||||
c-0.314,1.438-1.942,1.633-1.831,1.024c0.273-1.496,1.201-1.914-0.4-3.564c-0.979-1.01-1.908-2.344-2.138-3.425
|
||||
c-7.581,1.092-9.456,6.321-17.365,7.858c-2.787,0.541-5.233-1.016-7.887-2.27c0.168,0.259,0.457,0.272,0.169,1.184
|
||||
c-0.29,0.918-0.479,2.081-0.225,3.104c0.539,2.169,1.73,4.464,2.5,6.755c1.481,4.415,0.996,11.273,0.42,15.21
|
||||
c-0.105,0.715,0.497,1.432,0.129,2.608c-0.128,0.413,0.384,1.027,0.347,1.458c-0.195,2.236,1.106,2.01,3.446,4.502
|
||||
c-0.21,0.252-0.926,0.504-1.136,0.756c4.353,5.205,8.404,10.612,11.622,16.651c0.805,1.512,1.511,3.199,1.511,4.913
|
||||
c0,1.955-1.154,2.843-2.057,4.577c-0.741,1.423-2.081,2.305-3.121,3.526c-5.631,6.614-9.57,11.287-15.186,17.936
|
||||
c-0.976,3.091,1.141,4.783,1.093,6.394c-0.011,0.372-0.267,0.74-0.555,1.119c-0.452,0.595-2.752-1.225-4.01-2.617
|
||||
c-1.657,8.48,5.22,10.332,8.284,12.274c0.37,0.234,0.076,1.004-0.05,1.424c-4.442,0.217-7.603,0.246-11.857-1.172
|
||||
c-0.783-0.963-2.958-5.188-4.535-3.406c-0.735,0.831-1.092,1.932-1.637,2.897c-0.462,0-0.76-0.247-1.222-0.247
|
||||
c-0.042-1.553,0.19-2.878-0.044-4.413c-0.633-4.152-1.551-4.467,2.037-7.866c1.782-1.689,2.374-2.065,4.045-3.916
|
||||
c-0.552-1.562,0.385-2.303-1.192-3c-0.936-0.041-3.255,1.205-3.535,2.152c-0.378-0.042-1.001-0.701-1.379-0.742
|
||||
c0.896-1.794,1.155-1.791,0.926-2.913c-0.796-3.892,1.304-4.478,3.593-5.779c3.523-3.523,6.666-10.464,10.145-14.605
|
||||
c1.05-1.25,2.885-2.043,4.019-3.219c-1.26-1.175-2.805-2.106-3.779-3.526c-2.437-3.554-6.445-7.633-9.421-8.945
|
||||
c-0.756,0.168-1.513,0.336-2.269,0.504c-3.89-2.843-8.766-8.817-6.814-16.892c1.413-5.846,8.545-7.913,2.791-13.009
|
||||
c-1.299-1.15-7.22-6.915-8.904-6.021c-1.257,0.667-3.774,2.431-3.966,4.015c-0.299,2.472-4.275,17.925-7.829,14.167
|
||||
C9.169,53.682,7.55,47.517,6.059,43.276c-0.873-2.481-4.009-2.109-5.077-5c-0.368-0.997-1.229-2.067-0.914-3.082
|
||||
c0.169-0.545,0.63-0.336,1.175-0.504c0.535-2.002,0.199-1.216,1.704-1.318c0-1.215,0.604-0.978,1.498-0.978
|
||||
c0.987-1.624,1.841-0.106,4.696,1.74c1.461,0.945,1.292,2.708,0.987,4.319c-0.281,1.483-0.582,2.403-0.018,3.626
|
||||
c1.14,2.472,4.709,6.794,6.412,9.063c2.12-2.974,1.531-6.198,1.788-10.647c0.1-1.729,0.84-3.361,1.26-5.041
|
||||
c-1.504-0.111-2.596-0.532-3.277-1.261c0.336-0.588,0.672-1.177,1.008-1.765c-1.64-1.64-1.834-2.188-2.325-4.48
|
||||
c3.162,0,2.708-1.862,4.342-4.09c-0.84-0.504-1.681-1.008-2.521-1.512c3.833-2.869,3.828-2.76,2.539-8.066
|
||||
c-0.877-3.608-0.278-6.225,2.058-9.733C25.57-1.726,27.022,0.327,31.783,0.3c3.464-0.021,6.667,0.022,8.97,5.944
|
||||
c-0.462-0.248-1.416-0.428-1.878-0.126c0.126,0.588,0.825,2.984,0.5,3.49c-0.673,1.049-0.867,0.977-0.087,2.224
|
||||
c0.345,0.552-0.111,2.569-0.915,4.108c-0.366,0.807-0.308,2.539-1.714,2.186c-0.534,0.42-0.248,1.744,0.203,2.164
|
||||
c2.527,0,5.04-0.988,7.921-0.666C47.872,19.969,54.917,30.783,62.022,30.848L62.022,30.848z"/>
|
||||
</clipPath>
|
||||
<rect clip-path="url(#CLIPPATH_0)" x="0" y="0" rx="0" ry="0" width="105" height="77" style="stroke: none; stroke-width: 0; stroke-dasharray: ; fill: url(#linear); opacity: 1;"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
21
test/visual/assets/clippath-9.svg
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"
|
||||
id="Wikimedia logo"
|
||||
viewBox="240 240 230 230" width="400" height="400">
|
||||
<defs>
|
||||
<clipPath id="mask" transform="scale(1.1, 1.1)">
|
||||
<polygon fill="#D8CB3F" points="245.45,333.29 313.95,405.79 393.45,318.29 316.95,259.79 "/>
|
||||
<polygon fill="#8E8029" points="234.99,339.36 245.45,333.29 313.95,405.79 303.49,411.86 "/>
|
||||
<polygon fill="#8E8029" points="305.6,264.97 316.95,259.79 245.45,333.29 234.99,339.36 "/>
|
||||
<path fill="#D8CB3F" d="M231.15,283.42c1.18,2.07,2.56,4.26,4.14,6.57l10.62,13.65c3.39,3.94,7.17,8.01,11.29,12.14l3.41-3.41
|
||||
c0,0-16.5-17.25-26.11-32.3L231.15,283.42z"/>
|
||||
<path fill="#D8CB3F" d="M229.7,259.54c-1.9,1.43-2.31,3.86-1.67,6.91l0.08,0.15c3.5-2.53,11.03-1.57,19.8,0.98h0l0,0
|
||||
c20.02,5.83,46.53,19.97,46.53,19.97l2.12-3.62C267.45,266.79,236.17,254.67,229.7,259.54z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#mask)">
|
||||
<circle cx="300" cy="300" fill="#396" r="300"/>
|
||||
<circle cx="600" cy="600" fill="#900" r="330"/>
|
||||
<circle cx="600" cy="90" fill="#009" r="350"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
test/visual/golden/clippath-5.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
test/visual/golden/clippath-6.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
test/visual/golden/clippath-7.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
test/visual/golden/clippath-8.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
test/visual/golden/clippath-9.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
test/visual/golden/clipping10.png
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
|
|
@ -1,7 +1,7 @@
|
|||
(function() {
|
||||
fabric.enableGLFiltering = false;
|
||||
fabric.isWebglSupported = false;
|
||||
fabric.Object.prototype.objectCaching = false;
|
||||
fabric.Object.prototype.objectCaching = true;
|
||||
var visualTestLoop;
|
||||
var getAsset;
|
||||
if (fabric.isLikelyNode) {
|
||||
|
|
@ -12,13 +12,21 @@
|
|||
visualTestLoop = window.visualTestLoop;
|
||||
getAsset = window.getAsset;
|
||||
}
|
||||
var fabricCanvas = this.canvas = new fabric.Canvas(null, {enableRetinaScaling: false, renderOnAddRemove: false});
|
||||
var fabricCanvas = new fabric.Canvas(null, {enableRetinaScaling: false, renderOnAddRemove: false});
|
||||
|
||||
function createTestFromSVG(svgName) {
|
||||
var test = function(canvas, callback) {
|
||||
getAsset(svgName, function(err, string) {
|
||||
fabric.loadSVGFromString(string, function(objects) {
|
||||
canvas.add.apply(canvas, objects);
|
||||
fabric.loadSVGFromString(string, function(objects, options) {
|
||||
// something is disabling objectCaching and i cannot find where it is.
|
||||
objects.forEach(function(o) {
|
||||
o.objectCaching = true;
|
||||
});
|
||||
var group = fabric.util.groupSVGElements(objects, options);
|
||||
group.includeDefaultValues = false;
|
||||
canvas.includeDefaultValues = false;
|
||||
canvas.add(group);
|
||||
canvas.setDimensions({ width: group.width + group.left, height: group.height + group.top });
|
||||
canvas.renderAll();
|
||||
callback(fabricCanvas.lowerCanvasEl);
|
||||
});
|
||||
|
|
@ -73,6 +81,11 @@
|
|||
'svg_radial_12',
|
||||
'svg_radial_13',
|
||||
'svg_text_letterspacing',
|
||||
'clippath-5',
|
||||
'clippath-6',
|
||||
'clippath-7',
|
||||
'clippath-9',
|
||||
//'clippath-8',
|
||||
].map(createTestFromSVG);
|
||||
|
||||
tests.forEach(visualTestLoop(fabricCanvas, QUnit));
|
||||
|
|
|
|||