Files
mixtape/zero.Core/Media/Models/MediaFocalPoint.cs
T
2022-02-17 23:09:12 +01:00

14 lines
309 B
C#

namespace zero.Media;
/// <summary>
/// The focal point sets the point of interest in an image with x/y coordinates from 0-1
/// </summary>
public class MediaFocalPoint
{
public decimal Left { get; set; }
public decimal Top { get; set; }
public bool NotDefault() => Left != 0.5m || Top != 0.5m;
}