You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by tk...@apache.org on 2001/04/12 15:47:58 UTC

cvs commit: xml-batik/samples/tests linkingTransform.svg

tkormann    01/04/12 06:47:58

  Added:       samples/tests linkingTransform.svg
  Log:
  second test for linking. This one specifies a transform in the SVG URI fragment.
  
  Revision  Changes    Path
  1.1                  xml-batik/samples/tests/linkingTransform.svg
  
  Index: linkingTransform.svg
  ===================================================================
  <?xml version="1.0" standalone="no"?>
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
  "http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
  
  <!-- ========================================================================= -->
  <!-- Copyright (C) The Apache Software Foundation. All rights reserved.        -->
  <!--                                                                           -->
  <!-- This software is published under the terms of the Apache Software License -->
  <!-- version 1.1, a copy of which has been included with this distribution in  -->
  <!-- the LICENSE file.                                                         -->
  <!-- ========================================================================= -->
  
  <!-- ========================================================================= -->
  <!-- Linking and viewBox test.                                                 -->
  <!--                                                                           -->
  <!-- @author Thierry.Kormann@sophia.inria.fr                                   -->
  <!-- @version $Id: linkingTransform.svg,v 1.1 2001/04/12 13:47:58 tkormann Exp $ -->
  <!-- ========================================================================= -->
  
  <?xml-stylesheet type="text/css" href="test.css" ?>
  
  <svg id="body" width="450" height="500" viewBox="0 0 450 500">
  <title>Linking and transform test</title>
      <!-- ============================================================= -->
      <!-- Test content                                                  -->
      <!-- ============================================================= -->
  
      <g id="testContent">
  
    <text x="225" y="50" class="title">
  Linking and transform test
    </text>
  
  <defs>
    <g id="arrow">
      <polygon points="0 -20 20 0 10 0 10 20 -10 20 -10 0 -20 0" />
    </g>
  </defs>
  
  <g transform="translate(20 70)">
  
  	<a xlink:href="#svgView(transform(translate(0,-50))">
  	<use xlink:href="#arrow" transform="translate(205 120)"/>
  	</a>
  
  	<a xlink:href="#svgView(transform(translate(50,0))">
  	<use xlink:href="#arrow" transform="translate(255 180)rotate(90)"/>
  	</a>
  
  	<a xlink:href="#svgView(transform(translate(-50,0))">
  	<use xlink:href="#arrow" transform="translate(155 180)rotate(-90)"/>
  	</a>
  
  	<a xlink:href="#svgView(transform(translate(0,50))">
  	<use xlink:href="#arrow" transform="translate(205 240)rotate(180)"/>
  	</a>
  
  </g>
  
  <a xlink:href="#body">
  <circle cx="225" cy="250" r="10" />
  </a>
  
  
  
      </g>
  
      <!-- ============================================================= -->
      <!-- Batik sample mark                                             -->
      <!-- ============================================================= -->
      <use xlink:href="../batikLogo.svg#Batik_Tag_Box" />
      
  </svg>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: batik-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: batik-dev-help@xml.apache.org