Vector2Equals method

  1. @override
bool Vector2Equals(
  1. Vector2D p,
  2. Vector2D q
)
override

Check whether two given vectors are almost equal

Implementation

@override
bool Vector2Equals(
  Vector2D p,
  Vector2D q,
) => _ffi.Vector2Equals(
  $.Vector2$.Ref1(p).asNativePointer<Vector2C>().ref,
  $.Vector2$.Ref2(q).asNativePointer<Vector2C>().ref,
);