line method

void line(
  1. Vec2D v
)

Implementation

void line(Vec2D v) {
  lineTo(v.x, v.y);
}