rect method

Terminal rect(
  1. int x,
  2. int y,
  3. int width,
  4. int height,
)

Implementation

Terminal rect(int x, int y, int width, int height) {
  // TODO: Bounds check.
  return PortTerminal(x, y, Vec(width, height), this);
}