Vector3Equals method

  1. @override
bool Vector3Equals(
  1. Vector3D p,
  2. Vector3D q
)
override

Check whether two given vectors are almost equal

Implementation

@override
bool Vector3Equals(
  Vector3D p,
  Vector3D q,
) => _ffi.Vector3Equals(
  $.Vector3$.Ref1(p).asNativePointer<Vector3C>().ref,
  $.Vector3$.Ref2(q).asNativePointer<Vector3C>().ref,
);