Grx.fast_draw_vline

@accepts(int, int, int, Grx.Color)
@returns(none)
def fast_draw_vline(x, y1, y2, c):
    # Python wrapper for grx_fast_draw_vline()
  

Draws a vertical line on the current context from the starting coordinates to the ending coordinates using the specified color.

This is more efficient that using Grx.fast_draw_line.

This function does not perform clipping. If you cannot ensure that the endpoints are within the bounds of the current context, then use Grx.draw_hline instead.

x

X coordinate

y1

starting Y coordinate

y2

ending Y coordinate

c

the color