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