transformed method

Aabb3 transformed(
  1. Matrix4 t,
  2. Aabb3 out
)

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

Implementation

Aabb3 transformed(Matrix4 t, Aabb3 out) => out
  ..copyFrom(this)
  ..transform(t);