Matrix4.outer constructor

Matrix4.outer(
  1. Vector4 u,
  2. Vector4 v
)

Outer product of u and v.

Implementation

factory Matrix4.outer(Vector4 u, Vector4 v) => Matrix4.zero()..setOuter(u, v);