moveTo method

void moveTo (Point<num> p)

Moves this window to a specific position.

x and y can be negative.

Other resources

Implementation

void moveTo(Point p) {
  _moveTo(p.x, p.y);
}