X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcircle.cpp;h=5750b1f0ecabb66ac2929f68cb4b6543ea035bbf;hb=9d5d4488ba75c407709556a7ed56b8d16e21834e;hp=35c9d7c2e53f224dd97323229027b37c246ce88a;hpb=83e22355362af43b5beaafbccf101fa8b35bb12f;p=architektonas diff --git a/src/circle.cpp b/src/circle.cpp index 35c9d7c..5750b1f 100644 --- a/src/circle.cpp +++ b/src/circle.cpp @@ -4,7 +4,7 @@ // (C) 2011 Underground Software // See the README and GPLv3 files for licensing and warranty information // -// JLH = James L. Hammons +// JLH = James Hammons // // WHO WHEN WHAT // --- ---------- ------------------------------------------------------------ @@ -35,15 +35,15 @@ Circle::~Circle() else painter->SetPen(QPen(Qt::black, 1.0, Qt::SolidLine)); - // Draw handles (if needed) + // Draw the object... + painter->DrawEllipse(position, radius, radius); + + // & draw handles (if needed) if (state == OSSelected || hitCenter) painter->DrawHandle(position); if (state == OSSelected && draggingEdge && objectWasDragged) painter->DrawHandle(dragPoint); - - // & finally, draw the object! - painter->DrawEllipse(position, radius, radius); } /*virtual*/ Vector Circle::Center(void)