Vector3Equals method

bool Vector3Equals(
  1. Vector3C p,
  2. Vector3C q
)

Check whether two given vectors are almost equal

Implementation

bool Vector3Equals(Vector3C p, Vector3C q)
  => _Vector3Equals(p, q) != 0;