NokiaWebGL icon indicating copy to clipboard operation
NokiaWebGL copied to clipboard

Height Map LUT Fix

Open clementvalla opened this issue 12 years ago • 0 comments

I found that the Heights from the LUTs are correct, they are just offset by one column.

If you replace this line in the code: off += int(col - 1) * 2**zoom

with this: off += int(col) * 2**zoom

things seem to work.

clementvalla avatar Jan 30 '13 23:01 clementvalla