size property

Point<double> size

The size of bounding box of this camera taking in to account its rotation. When the rotation is zero this will equal nonRotatedSize, otherwise it will be the size of the rectangle which contains this camera.

Implementation

Point<double> get size => _cameraSize ??= calculateRotatedSize(
      rotation,
      nonRotatedSize,
    );