greaterThan method

bool greaterThan(
  1. Vector other
)

Implementation

bool greaterThan(Vector other) {
  return _sumSqrs() > other._sumSqrs();
}