Matrix2.outer constructor

Matrix2.outer(
  1. Vector2 u,
  2. Vector2 v
)

Outer product of u and v.

Implementation

factory Matrix2.outer(Vector2 u, Vector2 v) => Matrix2.zero()..setOuter(u, v);