summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
diff options
context:
space:
mode:
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();
+}