loadFrom method

void loadFrom(
  1. double x,
  2. double y,
  3. double w,
  4. double h,
)

Implementation

void loadFrom(double x, double y, double w, double h) {
  this.x = x;
  this.y = y;
  this.w = w;
  this.h = h;
}