setWidth method

Rectangle<double> setWidth(
  1. double width_
)

Implementation

math.Rectangle<double> setWidth(double width_) {
  return fromLTWH(topLeft, math.Point<double>(width_, height));
}