largest constant

Rect const largest

A rectangle that covers the entire coordinate space.

This covers the space from -1e9,-1e9 to 1e9,1e9. This is the space over which graphics operations are valid.

Implementation

static const Rect largest = Rect.fromLTRB(-_giantScalar, -_giantScalar, _giantScalar, _giantScalar);