rect1 method

RectangleC rect1([
  1. num? x,
  2. num? y,
  3. num? w,
  4. num? h,
])

Implementation

RectangleC rect1([num? x, num? y, num? w, num? h])
  => rect1Ptr.set(x ?? rect1Ptr.ref.x, y ?? rect1Ptr.ref.y, w ?? rect1Ptr.ref.width, h ?? rect1Ptr.ref.height).ref;