Revision: 7
http://svn.sourceforge.net/nplot/?rev=7&view=rev
Author: jamcquay
Date: 2006-11-11 04:35:24 -0800 (Sat, 11 Nov 2006)
Log Message:
-----------
Fixed [SF bug 1594664]
PointF X and Y values were being cast to an int. Removed the cast
Full patch submitted via email by Pawel Konieczny
Signed off by: jamcquay
Modified Paths:
--------------
trunk/src/Axis.cs
Modified: trunk/src/Axis.cs
===================================================================
--- trunk/src/Axis.cs 2006-10-28 15:45:20 UTC (rev 6)
+++ trunk/src/Axis.cs 2006-11-11 12:35:24 UTC (rev 7)
@@ -844,7 +844,7 @@
(float)(prop * (_physicalMax.X - _physicalMin.X)),
(float)(prop * (_physicalMax.Y - _physicalMin.Y)) );
- return new PointF( (int)(_physicalMin.X + offset.X), (int)(_physicalMin.Y + offset.Y) );
+ return new PointF( (_physicalMin.X + offset.X), (_physicalMin.Y + offset.Y) );
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|