From 963566c2c1c45e7e30316dd37d851718f4f1aa9a Mon Sep 17 00:00:00 2001 From: kitfox Date: Tue, 16 Oct 2012 22:47:09 +0000 Subject: Fixing path calculation error for continuous joins. git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@137 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b --- src/main/java/com/kitfox/svg/pathcmd/Vertical.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/main/java/com/kitfox/svg/pathcmd/Vertical.java') diff --git a/src/main/java/com/kitfox/svg/pathcmd/Vertical.java b/src/main/java/com/kitfox/svg/pathcmd/Vertical.java index ca7bda4..cf7bc4d 100644 --- a/src/main/java/com/kitfox/svg/pathcmd/Vertical.java +++ b/src/main/java/com/kitfox/svg/pathcmd/Vertical.java @@ -42,6 +42,11 @@ public class Vertical extends PathCommand { public Vertical() { } + public String toString() + { + return "V " + y; + } + public Vertical(boolean isRelative, float y) { super(isRelative); this.y = y; @@ -50,11 +55,12 @@ public class Vertical extends PathCommand { // public void appendPath(ExtendedGeneralPath path, BuildHistory hist) public void appendPath(GeneralPath path, BuildHistory hist) { - float offx = hist.history[0].x; - float offy = isRelative ? hist.history[0].y : 0f; + float offx = hist.lastPoint.x; + float offy = isRelative ? hist.lastPoint.y : 0f; path.lineTo(offx, y + offy); - hist.setPoint(offx, y + offy); + hist.setLastPoint(offx, y + offy); + hist.setLastKnot(offx, y + offy); } public int getNumKnotsAdded() -- cgit v1.2.3-55-g7522