Optigon ... I have patched this up locally. Can't recall if I did a GITHUB push or not.
As I recall ... the problem was not with the calculations so much as the io tools used to do the reporting.
This is from my wings.erl file in function get_object_info.
As I recall ... the problem was not with the calculations so much as the io tools used to do the reporting.
This is from my wings.erl file in function get_object_info.
Code:
ToString = fun(Item) ->
case Item of
Item when is_float(Item) ->
lists:flatten(hd(io_lib:format("~.4f", [Item])));
Item when is_integer(Item) ->
integer_to_list(Item);
Item when is_list(Item) ->
Item
end
end,