示例#1
0
		public void TestPointRound ()
		{
			var point = new Point (2.4, 2.7);
			point = point.Round ();

			Assert.AreEqual (Math.Round (2.4), point.X);
			Assert.AreEqual (Math.Round (2.7), point.Y);
		}