aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples/svg/test/rotateScale.svg
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/svg/test/rotateScale.svg')
-rw-r--r--docs/examples/svg/test/rotateScale.svg40
1 files changed, 0 insertions, 40 deletions
diff --git a/docs/examples/svg/test/rotateScale.svg b/docs/examples/svg/test/rotateScale.svg
deleted file mode 100644
index fe1b98548..000000000
--- a/docs/examples/svg/test/rotateScale.svg
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" standalone="yes"?>
-
-<svg:svg width="400px" height="120px" xmlns:svg="http://www.w3.org/2000/svg">
- <svg:title>RotateScale</svg:title>
- <svg:desc>Example RotateScale - Rotate and scale transforms</svg:desc>
-
- <svg:g style="fill:none; stroke:black; stroke-width:3">
- <!-- Draw the axes of the original coordinate system -->
- <svg:line x1="0" y1="1.5" x2="400" y2="1.5" />
- <svg:line x1="1.5" y1="0" x2="1.5" y2="120" />
- </svg:g>
-
- <!-- Establish a new coordinate system whose origin is at (50,30)
- in the initial coord. system and which is rotated by 30 degrees. -->
- <svg:g transform="translate(50,30)">
- <svg:g transform="rotate(30)">
- <svg:g style="fill:none; stroke:red; stroke-width:3">
- <svg:line x1="0" y1="0" x2="50" y2="0" />
- <svg:line x1="0" y1="0" x2="0" y2="50" />
- </svg:g>
- <svg:text x="0" y="0" style="font-size:20; font-family:Verdana; fill:blue">
- ABC (rotate)
- </svg:text>
- </svg:g>
- </svg:g>
-
- <!-- Establish a new coordinate system whose origin is at (200,40)
- in the initial coord. system and which is scaled by 1.5. -->
- <svg:g transform="translate(200,40)">
- <svg:g transform="scale(1.5)">
- <svg:g style="fill:none; stroke:red; stroke-width:3">
- <svg:line x1="0" y1="0" x2="50" y2="0" />
- <svg:line x1="0" y1="0" x2="0" y2="50" />
- </svg:g>
- <svg:text x="0" y="0" style="font-size:20; font-family:Verdana; fill:blue">
- ABC (scale)
- </svg:text>
- </svg:g>
- </svg:g>
-</svg:svg>