Vector3Distance function

  1. @Deprecated('Use (v1 - v2).length instead')
double Vector3Distance(
  1. Vector3 v1,
  2. Vector3 v2
)

Implementation

@Deprecated('Use (v1 - v2).length instead')
double Vector3Distance(Vector3 v1, Vector3 v2) => (v1 - v2).length;