Compare commits

...

2 commits

Author SHA1 Message Date
a5758646da Whitespace alignment 2025-03-13 14:11:44 -04:00
aa12ac2381 Split out draw_isobar() 2025-03-13 14:11:34 -04:00

View file

@ -49,21 +49,27 @@ class SkewTGraph():
return factor * self.height
def draw_isobar(self, cr: cairo.Context,
x: float,
y: float,
pressure: float):
sx, sy = self.graph_to_screen(-self.width / 2,
self.pressure_to_y(pressure))
cr.move_to(x + sx, y + sy)
cr.rel_line_to(self.width, 0)
cr.stroke()
def draw_isobars(self, cr: cairo.Context, x: float, y: float):
cr.save()
cr.set_source_rgb(0.75, 0.75, 0.75)
for pressure in range(PRESSURE_MIN, PRESSURE_MAX+1, PRESSURE_STEP):
coords = self.graph_to_screen(-self.width / 2,
self.pressure_to_y(pressure))
if pressure % (2*PRESSURE_STEP) != 0:
continue
cr.move_to(x + coords[0], y + coords[1])
cr.rel_line_to(self.width, 0)
cr.stroke()
self.draw_isobar(cr, x, y, pressure)
cr.restore()
@ -163,11 +169,11 @@ class SkewTGraph():
cr.stroke()
def draw_sounding(self,
cr: cairo.Context,
x: float,
y: float,
sounding: Sounding,
fn: Callable):
cr: cairo.Context,
x: float,
y: float,
sounding: Sounding,
fn: Callable):
cr.save()
first = True