[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]
[XaraXtreme-dev] Doubles and Strings
- From: Alex Bligh <alex@xxxxxxxxxxx>
- Date: Fri, 04 Aug 2006 11:28:01 +0100
- Subject: [XaraXtreme-dev] Doubles and Strings
The correct way to pass a double as a parameter to sprintf, sscanf etc.
is using "%lf" not "%f" (which means float). This is the reason many
things (including all EPS import) do not currently work on any platform
where float != double.
This has been a public service announcement.
Alex