Closed timbunce closed 15 years ago
For some data sets a lot of time can be spent processing boxes that are too small to see.
This can be fixed by adding the following 'precondition' check to createBox
// if box too small to be worth drawing then return empty string if (coord.width * coord.height < 1) return "";
solved here:
http://github.com/philogb/jit/commit/3532396db05dc7e381b5abdf5fad611788ba1f76
Will be added in 1.1.3
For some data sets a lot of time can be spent processing boxes that are too small to see.
This can be fixed by adding the following 'precondition' check to createBox