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