CityGame/CityGame/Extensions.cs
2023-05-04 13:43:19 +02:00

25 lines
No EOL
681 B
C#

using System;
using System.Windows;
namespace CityGame
{
public static class Extensions
{
public static System.Drawing.Point Convert(this Point point)
{
return new System.Drawing.Point((int)point.X, (int)point.Y);
}
public static Point Convert(this System.Drawing.Point point)
{
return new Point(point.X, point.Y);
}
public static bool CloselyEquals(this double A, double B)
{
return Math.Round(A) == Math.Round(B);
}
public static bool CloselyEquals(this float A, double B)
{
return Math.Round(A) == Math.Round(B);
}
}
}