Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Layers/IssueOfPoints.cs')
-rw-r--r--UVtools.Core/Layers/IssueOfPoints.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/UVtools.Core/Layers/IssueOfPoints.cs b/UVtools.Core/Layers/IssueOfPoints.cs
index fd335bc..d8b2a5a 100644
--- a/UVtools.Core/Layers/IssueOfPoints.cs
+++ b/UVtools.Core/Layers/IssueOfPoints.cs
@@ -19,6 +19,8 @@ public sealed class IssueOfPoints : Issue
/// </summary>
public Point[] Points { get; init; }
+ public IssueOfPoints() { }
+
public IssueOfPoints(Layer layer, IEnumerable<Point> points, Rectangle boundingRectangle = default) : base(layer, boundingRectangle, points.Count())
{
Points = points.ToArray();