PageRenderTime 49ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/projects/batik-1.7/samples/tests/spec/scripting/maskClipUpdate.svg

https://gitlab.com/essere.lab.public/qualitas.class-corpus
SVG | 126 lines | 71 code | 30 blank | 25 comment | 3 complexity | dc9744ea15690b789e03946ddf2e2a1d MD5 | raw file
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
  3. "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
  4. <!--
  5. Licensed to the Apache Software Foundation (ASF) under one or more
  6. contributor license agreements. See the NOTICE file distributed with
  7. this work for additional information regarding copyright ownership.
  8. The ASF licenses this file to You under the Apache License, Version 2.0
  9. (the "License"); you may not use this file except in compliance with
  10. the License. You may obtain a copy of the License at
  11. http://www.apache.org/licenses/LICENSE-2.0
  12. Unless required by applicable law or agreed to in writing, software
  13. distributed under the License is distributed on an "AS IS" BASIS,
  14. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. See the License for the specific language governing permissions and
  16. limitations under the License.
  17. -->
  18. <!-- ====================================================================== -->
  19. <!-- check updates on gradients, filter, mask, and clip regarding to -->
  20. <!-- geometry updates -->
  21. <!-- -->
  22. <!-- @author tkormann@ilog.fr -->
  23. <!-- @version $Id: maskClipUpdate.svg 475477 2006-11-15 22:44:28Z cam $ -->
  24. <!-- ====================================================================== -->
  25. <?xml-stylesheet type="text/css" href="../../resources/style/test.css" ?>
  26. <svg xmlns="http://www.w3.org/2000/svg"
  27. xmlns:xlink="http://www.w3.org/1999/xlink"
  28. id="body" width="450" height="500" viewBox="0 0 450 500">
  29. <title>Clip and mask with geometry updates</title>
  30. <text x="50%" y="25" class="title">Clip and mask with geometry updates
  31. <tspan x="50%" dy="1.1em" style="font-style:italic; font-size:12">(click on all shapes and see
  32. <a style="fill:blue" xlink:href="maskClipUpdateRef.svg">maskClipUpdateRef.svg</a>)</tspan></text>
  33. <script type="text/ecmascript">
  34. var svgNamespaceURI = "http://www.w3.org/2000/svg";
  35. function move(evt) {
  36. var x = parseFloat(evt.target.getAttribute("x"));
  37. var y = parseFloat(evt.target.getAttribute("y"));
  38. evt.target.setAttribute("x", x+90);
  39. evt.target.setAttribute("y", y+85);
  40. }
  41. </script>
  42. <defs>
  43. <clipPath id="clipObjectBoundingBox" clipPathUnits="objectBoundingBox">
  44. <circle cx=".5" cy=".5" r=".5" />
  45. </clipPath>
  46. <clipPath id="clipUserSpaceOnUse" clipPathUnits="userSpaceOnUse">
  47. <circle cx="340" cy="195" r="80" />
  48. </clipPath>
  49. <mask id="maskObjectBoundingBox" maskContentUnits="objectBoundingBox" maskUnits="objectBoundingBox"
  50. x="0" y="0" width="1" height="1">
  51. <circle cx=".5" cy=".5" r=".5" fill="white"/>
  52. </mask>
  53. <mask id="maskUserSpaceOnUse" maskContentUnits="userSpaceOnUse" maskUnits="userSpaceOnUse"
  54. x="250" y="300" width="180" height="190">
  55. <circle cx="340" cy="390" r="80" fill="white"/>
  56. </mask>
  57. </defs>
  58. <g id="test-content" transform="translate(0, -20)">
  59. <g id="board" style="fill:none; stroke:black">
  60. <rect x="40" y="80" width="200" height="20" style="fill:#eee"/>
  61. <rect x="240" y="80" width="200" height="20" style="fill:#eee"/>
  62. <rect x="40" y="100" width="200" height="380" />
  63. <rect x="240" y="100" width="200" height="380" />
  64. <line x1="20" y1="290" x2="440" y2="290" />
  65. <rect x="20" y="100" width="20" height="190" style="fill:#eee"/>
  66. <rect x="20" y="290" width="20" height="190" style="fill:#eee"/>
  67. <g style="fill:black; stroke:none; text-anchor:middle">
  68. <text x="134" y="94">objectBoundingBox</text>
  69. <text x="314" y="94">userSpaceOnUse</text>
  70. <text x="0" y="0" transform="translate(34 200)rotate(-90)">&lt;clipPath></text>
  71. <text x="0" y="0" transform="translate(34 380)rotate(-90)">&lt;mask></text>
  72. </g>
  73. </g>
  74. <rect onclick="move(evt)" x="50" y="110" width="90" height="85" style="fill:crimson; clip-path:url(#clipObjectBoundingBox)"/>
  75. <rect onclick="move(evt)" x="250" y="110" width="90" height="85" style="fill:crimson; clip-path:url(#clipUserSpaceOnUse)"/>
  76. <rect onclick="move(evt)" x="50" y="300" width="90" height="85" style="fill:crimson; mask:url(#maskObjectBoundingBox)"/>
  77. <rect onclick="move(evt)" x="250" y="300" width="90" height="85" style="fill:crimson; mask:url(#maskUserSpaceOnUse)"/>
  78. </g>
  79. <script type="text/ecmascript"><![CDATA[
  80. function onDone() {
  81. if (!(regardTestInstance == null)) {
  82. regardTestInstance.scriptDone();
  83. } else {
  84. alert("This button only works when run in the regard framework");
  85. }
  86. }
  87. ]]></script>
  88. <g id="done" transform="translate(195, 468)" cursor="pointer" onclick="onDone()">
  89. <rect rx="5" ry="5" width="60" height="25" fill="#eeeeee" stroke="black" />
  90. <text x="30" y="18" font-size="14" font-weight="bold" text-anchor="middle">Done</text>
  91. </g>
  92. </svg>