[TD]implement navigation styles

This commit is contained in:
Wanderer Fan
2022-04-08 19:24:15 -04:00
committed by WandererFan
parent 4791575e31
commit db89eec8e3
64 changed files with 3623 additions and 1034 deletions

View File

@@ -286,6 +286,21 @@ int DrawViewBalloon::prefEnd(void) const
return Preferences::balloonArrow();
}
QPointF DrawViewBalloon::getOrigin()
{
double x = OriginX.getValue();
double y = OriginY.getValue();
QPointF result(x, y);
return result;
}
void DrawViewBalloon::setOrigin(QPointF p)
{
OriginX.setValue(p.x());
OriginY.setValue(p.y());
origin = p;
}
Base::Vector3d DrawViewBalloon::getOriginOffset() const
{
double x = X.getValue();