Draw marker numbers correctly on R+jX charts

pull/89/head
Rune Broberg 2019-11-05 13:10:36 +01:00
rodzic 3267896b8f
commit 68918172d8
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -2408,8 +2408,8 @@ class RealImaginaryChart(FrequencyChart):
y_re = self.getReYPosition(self.data[m.location])
y_im = self.getImYPosition(self.data[m.location])
self.drawMarker(x, y_re, qp, m.color)
self.drawMarker(x, y_im, qp, m.color)
self.drawMarker(x, y_re, qp, m.color, self.markers.index(m)+1)
self.drawMarker(x, y_im, qp, m.color, self.markers.index(m)+1)
def getImYPosition(self, d: Datapoint) -> int:
_, im = RFTools.normalize50(d)

Wyświetl plik

@ -14,5 +14,5 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
version = '0.1.5'
debug = False
version = '0.1.6alpha'
debug = True