BoxOf.this - multiple declarations

Function BoxOf.this

Construct a box using x, y, width and height

this (
  T x,
  T y,
  T w,
  T h
);

Function BoxOf.this

Construct a box using position and size

this (
  PointOf!T p,
  SizeOf!T sz
);

Function BoxOf.this

Construct a box using Rect

this (
  RectOf!T rc
);