X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdimension.cpp;h=db2a2085d42bd730048aa536a3d31ffebe1320cc;hb=c58b8a9f8b1ae5494857fc423ed8e33b2bbcf329;hp=2a989dccec0de1b91fb3d68f8ab13e4d2ebbbcdf;hpb=89b8b0c60579d8ef0cf9a13521e7bf7c7864883f;p=architektonas diff --git a/src/dimension.cpp b/src/dimension.cpp index 2a989dc..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%... @@ -108,6 +108,7 @@ I believe they are pixels. } else { + // Draw outside arrowheads Point p7 = p1 - (unit * 9.0 * size); Point p8 = p2 + (unit * 9.0 * size); painter->DrawArrowhead(p1, p7, size); @@ -120,7 +121,27 @@ I believe they are pixels. painter->SetFont(QFont("Arial", 8.0 * Painter::zoom * size)); Vector v1((p1.x - p2.x) / 2.0, (p1.y - p2.y) / 2.0); Point ctr = p2 + v1; + +#if 0 QString dimText = QString("%1\"").arg(Vector(endpoint - position).Magnitude()); +#else + QString dimText; + double length = Vector(endpoint - position).Magnitude(); + + if (length < 12.0) + dimText = QString("%1\"").arg(length); + else + { + double feet = (double)((int)length / 12); + double inches = length - (feet * 12.0); + + if (inches == 0) + dimText = QString("%1'").arg(feet); + else + dimText = QString("%1' %2\"").arg(feet).arg(inches); + } +#endif + painter->DrawAngledText(ctr, angle, dimText, size); } @@ -320,7 +341,7 @@ about keeping track of old states... /*virtual*/ void Dimension::Enumerate(FILE * file) { - fprintf(file, "DIMENSION (%lf,%lf) (%lf,%lf) %i\n", position.x, position.y, endpoint.x, endpoint.y, type); + fprintf(file, "DIMENSION %i (%lf,%lf) (%lf,%lf) %i\n", layer, position.x, position.y, endpoint.x, endpoint.y, type); }