[Kst] [Bug 118602] d2asc isn't precise enough
netterfield@astro.utoronto.ca
netterfield at astro.utoronto.ca
Mon Dec 19 00:41:34 CET 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=118602
netterfield astro utoronto ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From netterfield astro utoronto ca 2005-12-19 00:41 -------
SVN commit 489519 by netterfield:
BUG: 118602
16 digits for d2asc. Eventually, it could be nice to have a command
line setting for this.
In the meantime, make sure we print out all the precision that could
possibly be there.
M +1 -1 d2asc.cpp
--- trunk/extragear/graphics/kst/kst/d2asc.cpp #489518:489519
@ -130,7 +130,7 @
if (do_hex[i]) {
printf("%4x ", (int)vlist.at(i)->interpolate(i_S, NS));
} else {
- printf("%.12g ", vlist.at(i)->interpolate(i_S, NS));
+ printf("%.16g ", vlist.at(i)->interpolate(i_S, NS));
}
}
printf("\n");
More information about the Kst
mailing list