summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
diff options
context:
space:
mode:
authorkitfox2007-04-13 03:42:00 +0200
committerkitfox2007-04-13 03:42:00 +0200
commit078afe2ba40282df0eab421f6711a654097988c5 (patch)
treecaaee86b01c0006aba01cbf089e5e2b882d2ea34 /src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
parentTest (diff)
downloadsvg-salamander-core-078afe2ba40282df0eab421f6711a654097988c5.tar.gz
svg-salamander-core-078afe2ba40282df0eab421f6711a654097988c5.tar.xz
svg-salamander-core-078afe2ba40282df0eab421f6711a654097988c5.zip
Added path definitions.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@15 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java b/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
new file mode 100644
index 0000000..e2af8af
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
@@ -0,0 +1,22 @@
+/*
+ * SVGPathSegClosePath.java
+ *
+ * Created on April 12, 2007, 8:59 PM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package com.kitfox.salamander.svg.paths;
+
+/**
+ * The SVGPathSegLinetoVerticalRel interface corresponds to a "relative vertical lineto" (v) path data command.
+ * @author kitfox
+ */
+public interface SVGPathSegLinetoVerticalRel extends SVGPathSeg
+{
+ /**
+ * The relative Y coordinate for the end point of this path segment.
+ */
+ public float getY();
+}