operator ~/ method

Size operator ~/(
  1. double operand
)

Integer (truncating) division operator.

Returns a Size whose dimensions are the dimensions of the left-hand-side operand (a Size) divided by the scalar right-hand-side operand (a double), rounded towards zero.

Implementation

Size operator ~/(double operand) => Size((width ~/ operand).toDouble(), (height ~/ operand).toDouble());