vectorProduct static method

double vectorProduct(
  1. VectorVector a,
  2. VectorVector b
)

Implementation

static double vectorProduct(VectorVector a, VectorVector b) {
  return a.x * b.y - b.x * a.y;
}