create method

Rectangle<double> create()

Implementation

math.Rectangle<double> create() {
  return math.Rectangle<double>(
      ref.x.toDouble(), ref.y.toDouble(), ref.w.toDouble(), ref.h.toDouble());
}