Vector2Equals method
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,
);