expansionLT method

Rectangle<double> expansionLT(
  1. Point<double> value
)

Implementation

math.Rectangle<double> expansionLT(math.Point<double> value) {
  return fromLTWH(
      topLeft, math.Point<double>(width + value.x, height + value.y));
}