setSize method

void setSize(
  1. double width,
  2. double height
)

Implementation

void setSize(double width, double height){
  this.width = width;
  this.height = height;
}