export function _drawVline (context, xx, yy1, yy2) {
  context.moveTo(xx, yy1)
  context.lineTo(xx, yy2)
}