From 6ce9d9112c232f02b2be6cbdedbeb89c28bc713a Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Sun, 8 Sep 2013 14:23:59 -0500 Subject: [PATCH] Fix Dimension to draw correctly. --- src/dimension.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dimension.cpp b/src/dimension.cpp index 83e657a..db2a208 100644 --- a/src/dimension.cpp +++ b/src/dimension.cpp @@ -93,8 +93,8 @@ I believe they are pixels. // Calculate whether or not the arrowheads are too crowded to put inside // the extension lines. 9.0 is the length of the arrowhead. // double t = Vector::Parameter(position, endpoint, endpoint - (unit * 9.0 * size)); -// double t = Vector::Parameter(position, endpoint, position + (unit * 9.0 * size)); - double t = Vector::Parameter(endpoint, position, position + (unit * 9.0 * size)); + double t = Vector::Parameter(position, endpoint, position + (unit * 9.0 * size)); +// double t = Vector::Parameter(endpoint, position, position + (unit * 9.0 * size)); //printf("Dimension::Draw(): t = %lf\n", t); // On the screen, it's acting like this is actually 58%... -- 2.37.2