mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 01:52:32 +02:00
13 lines
236 B
C#
13 lines
236 B
C#
using Avalonia;
|
|
|
|
namespace UVtools.WPF.Extensions
|
|
{
|
|
public static class PrimitivesExtensions
|
|
{
|
|
public static bool IsEmpty(this Point point)
|
|
{
|
|
return point.X == 0 && point.Y == 0;
|
|
}
|
|
}
|
|
}
|