Matrix4.outer constructor
Outer product of u
and v
.
Implementation
factory Matrix4.outer(Vector4 u, Vector4 v) =>
new Matrix4.zero()..setOuter(u, v);
Outer product of u
and v
.
factory Matrix4.outer(Vector4 u, Vector4 v) =>
new Matrix4.zero()..setOuter(u, v);