| mra = new MultiRectArea(1, 2, 4, 6);
checkPathIteratorDouble(
mra.getPathIterator(null),
new double[]{1, 2, 4, 2, 4, 6, 1, 6});
mra.addRect(4, 1, 6, 4);
checkPathIteratorDouble(
mra.getPathIterator(null),
new double[]{
1, 2, 4, 2, 4, 6, 1, 6,
4, 1, 6, 1, 6, 4, 4, 4});
|