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 = _artboard.width;
  var height = _artboard.height;
  return AABB.fromValues(0, 0, width, height);
}