Matrix3.outer constructor

Matrix3.outer(
  1. Vector3 u,
  2. Vector3 v
)

Outer product of u and v.

Implementation

factory Matrix3.outer(Vector3 u, Vector3 v) => Matrix3.zero()..setOuter(u, v);