transformed method

Aabb2 transformed(
  1. Matrix3 t,
  2. Aabb2 out
)

Create a copy of this that is transformed by the transform t and store it in out.

Implementation

Aabb2 transformed(Matrix3 t, Aabb2 out) => out
  ..copyFrom(this)
  ..transform(t);