I noticed a small issue with the expressions used for calculating column width (W) in the pseudo-algorithm. (13) W := max(0, (available-width - ((N - 1) * column-gap)) / N); .... (17) W := ((available-width + column-gap) / N) - column-gap; .... (21) W := ((available-width + column-gap) / N) - column-gap; I think line 13 can be changed to contain the same expression used in lines 17 and 21. i.e. (13) W := max(0, ((available-width + column-gap) / N) - column-gap); Not a big deal, just a bit more consistency. Cheers Rich -- http://www.richdougherty.com/Received on Tuesday, 14 June 2011 00:44:13 GMT
This archive was generated by hypermail 2.3.1 : Tuesday, 26 March 2013 17:20:41 GMT