Blob in ZIM019 have some problem.
For some reason, a ZIM Circle cannot be tested against a string in 019. Looking into it.
if (shape=="circle" || shape == "rectangle" || shape =="triangle") {
if (shape == "circle") shape = new zim.Circle(radius);
if (shape == "rectangle") shape = new zim.Rectangle(radius*2,radius*2).centerReg({add:false});
if (shape == "triangle") shape = new zim.Triangle(radius*2,radius*2,radius*2);
}
once the shape is a ZIM Circle, the next test is failing due to the test against a string. The two other shapes do not have that problem, if we switch the order, etc.


