1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 23:43:43 -04:00

GLScope: added markers. Implements #497

This commit is contained in:
f4exb
2020-07-06 02:44:11 +02:00
parent 5504a89184
commit c534766ea2
3 changed files with 419 additions and 1 deletions
+2
View File
@@ -44,6 +44,8 @@ public:
float getSize() { return m_size; }
void setRange(Unit::Physical physicalUnit, float rangeMin, float rangeMax);
float getRange() const { return m_rangeMax - m_rangeMin; }
float getRangeMin() const { return m_rangeMin; }
float getRangeMax() const { return m_rangeMax; }
void setMakeOpposite(bool makeOpposite) { m_makeOpposite = makeOpposite; }
void setFixedDecimalPlaces(int decimalPlaces) { m_fixedDecimalPlaces =decimalPlaces; }