aabb property

  1. @override
AABB aabb

Get the Axis Aligned Bounding Box that encompasses the world space scene

Implementation

@override
AABB get aabb {
  var width = _controller.size.width;
  var height = _controller.size.height;
  return AABB.fromValues(0, 0, width, height);
}