using Windows.Foundation;
namespace LiveCharts.Uwp.Points
{
///
///
///
public static class PointExtensions
{
///
/// Offsets the specified x.
///
/// The point.
/// The x.
/// The y.
public static void Offset(this Point point, double x, double y)
{
point.X += x;
point.Y += y;
}
}
}