Closed rjgriffin42 closed 6 years ago
Note that a way around this is
polygonA.clear();
polygonB.clear();
polygonB.setIncludingFrame(polygonA.getReferenceFrame(), polygonA);
assert(polygonA.epsilonEquals(polygonB, 1e-5);
This isn't exactly a desirable work around, though.
Oh wow, I'll fix that, thanks!
Addressed in a2ac89557e333494b2358564d604657c19d1cd9b
The following case current fails:
There are two random polygons, in random frames,
polygonA
andpolygonB
.This fails because of a reference frame mismatch.