//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Drawing.Shapes.PolygonClipper
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Runtime.CompilerServices;
using Paths;
///
/// ??
///
internal class OutPt
{
#pragma warning disable SA1401 // Field must be private
///
/// The index
///
internal int Idx;
///
/// The pt
///
internal System.Numerics.Vector2 Pt;
///
/// The next
///
internal OutPt Next;
///
/// The previous
///
internal OutPt Prev;
#pragma warning restore SA1401 // Field must be private
}
}