xxxxxxxxxx
if ((firstVector3 - secondVector3).sqrMagnitude <= toleranceSquared)
{
// checks if two vectors are nearly equals with a set tolerance.
// the tolerance and magnitude are squared for slightly better performance.
}