Merge pull request #777 from wawuwo/fix-765-wrong-text-angle-in-subcircuit-symbol

Generalise Text::angle() logic
This commit is contained in:
Vadim Kuznetsov 2024-06-21 12:54:51 +02:00 committed by GitHub
commit 4929b4125c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@
#include "element.h" #include "element.h"
#include "misc.h" #include "misc.h"
#include <cmath>
#include <QPainter> #include <QPainter>
namespace qucs { namespace qucs {
@ -70,28 +71,30 @@ void Text::draw(QPainter *painter, QRectF* br) const {
} }
double Text::angle() const { double Text::angle() const {
// Historically Text uses mSin and mCos values to store // Historically Text uses mSin and mCos values to describe
// its rotation factor. // at what angle the text is rotated.
// //
// The actual rotation was implemented as a clever // It employed some clever technique to draw the text rotated
// tranformation for a painter, like: // by applying "skew" transformations to QPainter and using mCos
// QTransform(mCos, -mSin, mSin, mCos, … // and mSin as skew factors, but later the whole drawing routine
// was refactored and it switched to using QPainter::rotate() and
// degrees to describe the rotation angle.
// //
// There were only four combinations of these values // Many other parts of the codebase still depend on mCos and mSin,
// and here we convert them to their human-readable // for example rotating and mirroring of a component and more than
// equivalents // 200 component constructors. It is a piece of work to get rid
if (mCos == 0.0) { // of mCos and mSin completely, so they're kept as is and their
if (mSin == 1.0) { // "degrees" equivalent is calculated when the text needs to be drawn.
return 270;
}
return 90;
}
if (mCos == -1.0 && mSin == 0.0) { const double radians = std::atan2(mSin, mCos);
return 180; const double degrees = (radians * 180.0) / 3.14159265 /* Pi */;
}
return 0; // QPainter::rotate() rotates *clockwise*, so if you want a text
// to have rotation angle of 45° (towards up-right direction),
// then the -45° has to be passed to QPainter::rotate().
//
// QPainter::rotate() is called in Text::draw
return -degrees;
} }