Returns true if the two arcs have the same values
const arcA = { radius: 5, endRadian: 0, startRadian: 1 };const arcA = { radius: 5, endRadian: 0, startRadian: 1 };arcA === arcB; // false, because object identities are differentArcs.isEqual(arcA, arcB); // true, because values are identical Copy
const arcA = { radius: 5, endRadian: 0, startRadian: 1 };const arcA = { radius: 5, endRadian: 0, startRadian: 1 };arcA === arcB; // false, because object identities are differentArcs.isEqual(arcA, arcB); // true, because values are identical
Returns true if the two arcs have the same values