rect3 method

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

Implementation

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