crossProduct - multiple declarations

Function crossProduct

Cross product of two Vec2 is a scalar in Z axis

T crossProduct(T) (
  Vector!(T,2) a,
  Vector!(T,2) b
);

Function crossProduct

3D cross product

Vector!(T,3) crossProduct(T) (
  Vector!(T,3) a,
  Vector!(T,3) b
);