equals method

bool equals(
  1. Vector4 v
)

Implementation

bool equals(Vector4 v) {
  return ((v.x == x) && (v.y == y) && (v.z == z) && (v.w == w));
}