diff --git a/examples/Paperjs.org/InteractiveTiger.html b/examples/Paperjs.org/InteractiveTiger.html index b4b12455..0de28c1c 100644 --- a/examples/Paperjs.org/InteractiveTiger.html +++ b/examples/Paperjs.org/InteractiveTiger.html @@ -6,7 +6,7 @@ diff --git a/examples/SVG Export/Compound Path.html b/examples/SVG Export/Compound Path.html index 62a92e88..684e39af 100644 --- a/examples/SVG Export/Compound Path.html +++ b/examples/SVG Export/Compound Path.html @@ -11,7 +11,7 @@ var path2 = new Path.Rectangle([50, 50], [200, 200]); var path3 = new Path.Rectangle([0, 0], [400, 400]); new CompoundPath(path1, path2, path3); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Empty Path Testing.html b/examples/SVG Export/Empty Path Testing.html index 0d5e31fb..8eeab4cf 100644 --- a/examples/SVG Export/Empty Path Testing.html +++ b/examples/SVG Export/Empty Path Testing.html @@ -17,7 +17,7 @@ var path3 = new Path(); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Gradients.html b/examples/SVG Export/Gradients.html index 49c844b9..c8bce21f 100644 --- a/examples/SVG Export/Gradients.html +++ b/examples/SVG Export/Gradients.html @@ -41,7 +41,7 @@ rect.rotate(45).scale(0.7); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Group Transform.html b/examples/SVG Export/Group Transform.html index ee820a14..a19f3742 100644 --- a/examples/SVG Export/Group Transform.html +++ b/examples/SVG Export/Group Transform.html @@ -14,7 +14,7 @@ group.translate([100, 100]); group.scale(0.5); group.rotate(10); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Line Testing.html b/examples/SVG Export/Line Testing.html index d83c321e..705550a5 100644 --- a/examples/SVG Export/Line Testing.html +++ b/examples/SVG Export/Line Testing.html @@ -30,7 +30,7 @@ line3.strokeColor = "yellow"; line3.strokeWidth = "5"; - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Random Path Testing.html b/examples/SVG Export/Random Path Testing.html index bbc7d7d8..327245b8 100644 --- a/examples/SVG Export/Random Path Testing.html +++ b/examples/SVG Export/Random Path Testing.html @@ -28,7 +28,7 @@ var path = new Path.Star(center, points, radius1, radius2); path.fillColor = 'black'; - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Raster.html b/examples/SVG Export/Raster.html index 54f45902..d665216e 100644 --- a/examples/SVG Export/Raster.html +++ b/examples/SVG Export/Raster.html @@ -9,7 +9,7 @@ var raster = new Raster('lenna'); raster.position = view.center; raster.rotate(45); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Rect and Attribute Testing.html b/examples/SVG Export/Rect and Attribute Testing.html index 56594b41..07665c5e 100644 --- a/examples/SVG Export/Rect and Attribute Testing.html +++ b/examples/SVG Export/Rect and Attribute Testing.html @@ -42,7 +42,7 @@ path4.strokeColor= 'yellow'; path4.fillColor='purple'; - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Rotated Primitives.html b/examples/SVG Export/Rotated Primitives.html index 35e2e23f..3a4aedf3 100644 --- a/examples/SVG Export/Rotated Primitives.html +++ b/examples/SVG Export/Rotated Primitives.html @@ -44,7 +44,7 @@ } } }; - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Symbols.html b/examples/SVG Export/Symbols.html index 92ffda18..a2dde578 100644 --- a/examples/SVG Export/Symbols.html +++ b/examples/SVG Export/Symbols.html @@ -16,7 +16,7 @@ p1.rotate(45); var p2 = symbol.place([300, 200]); p2.rotate(-30); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Text Testing.html b/examples/SVG Export/Text Testing.html index e9577359..1c601fc4 100644 --- a/examples/SVG Export/Text Testing.html +++ b/examples/SVG Export/Text Testing.html @@ -34,7 +34,7 @@ c.fillColor = colors[i]; } - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Tiger.html b/examples/SVG Export/Tiger.html index 951356ed..e6f5e544 100644 --- a/examples/SVG Export/Tiger.html +++ b/examples/SVG Export/Tiger.html @@ -11,7 +11,7 @@ project.importJSON(tiger); console.log('Load JSON', Date.now() - start); var start = Date.now(); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); console.log('Export SVG', Date.now() - start); diff --git a/examples/SVG Export/Transform Test 1.html b/examples/SVG Export/Transform Test 1.html index 00959c0e..59e96d38 100644 --- a/examples/SVG Export/Transform Test 1.html +++ b/examples/SVG Export/Transform Test 1.html @@ -18,7 +18,7 @@ clonedPath.rotate(angle * i, circlePath.bounds.topLeft); }; - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Export/Transform Test 2.html b/examples/SVG Export/Transform Test 2.html index a0a4c716..51d85d8d 100644 --- a/examples/SVG Export/Transform Test 2.html +++ b/examples/SVG Export/Transform Test 2.html @@ -16,7 +16,7 @@ copy.rotate(-45); copy.scale(0.5); - document.getElementById('svg').appendChild(project.exportSvg()); + document.getElementById('svg').appendChild(project.exportSVG()); diff --git a/examples/SVG Import/Circle and Ellipse Testing.html b/examples/SVG Import/Circle and Ellipse Testing.html index 2a5714b4..4cc2a4d5 100644 --- a/examples/SVG Import/Circle and Ellipse Testing.html +++ b/examples/SVG Import/Circle and Ellipse Testing.html @@ -6,7 +6,7 @@ diff --git a/examples/SVG Import/Clipping.html b/examples/SVG Import/Clipping.html index 238227c7..1c309154 100644 --- a/examples/SVG Import/Clipping.html +++ b/examples/SVG Import/Clipping.html @@ -5,7 +5,7 @@ Clipping diff --git a/examples/SVG Import/Gradients.html b/examples/SVG Import/Gradients.html index c6aa1c0b..b9eae0b1 100644 --- a/examples/SVG Import/Gradients.html +++ b/examples/SVG Import/Gradients.html @@ -5,7 +5,7 @@ Gradients diff --git a/examples/SVG Import/Inkscape.html b/examples/SVG Import/Inkscape.html index 05fd6362..d56ecee5 100644 --- a/examples/SVG Import/Inkscape.html +++ b/examples/SVG Import/Inkscape.html @@ -7,7 +7,7 @@ diff --git a/examples/SVG Import/Line Testing.html b/examples/SVG Import/Line Testing.html index df40dd48..de2aa25e 100644 --- a/examples/SVG Import/Line Testing.html +++ b/examples/SVG Import/Line Testing.html @@ -6,7 +6,7 @@ diff --git a/examples/SVG Import/Multiple Paths Test 1.html b/examples/SVG Import/Multiple Paths Test 1.html index b295e5bf..3411d8aa 100644 --- a/examples/SVG Import/Multiple Paths Test 1.html +++ b/examples/SVG Import/Multiple Paths Test 1.html @@ -6,7 +6,7 @@ diff --git a/examples/SVG Import/Multiple Paths Test 2.html b/examples/SVG Import/Multiple Paths Test 2.html index 375772fd..8a715463 100644 --- a/examples/SVG Import/Multiple Paths Test 2.html +++ b/examples/SVG Import/Multiple Paths Test 2.html @@ -6,7 +6,7 @@ diff --git a/examples/SVG Import/Nested Groups Test.html b/examples/SVG Import/Nested Groups Test.html index 3c19a6ea..de080d3e 100644 --- a/examples/SVG Import/Nested Groups Test.html +++ b/examples/SVG Import/Nested Groups Test.html @@ -6,7 +6,7 @@ diff --git a/examples/SVG Import/Polybezier.html b/examples/SVG Import/Polybezier.html index c83c84cb..97e147dc 100644 --- a/examples/SVG Import/Polybezier.html +++ b/examples/SVG Import/Polybezier.html @@ -6,7 +6,7 @@