//
// 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 IntersectNode
{
#pragma warning disable SA1401 // Field must be private
///
/// The edge1
///
internal TEdge Edge1;
///
/// The edge2
///
internal TEdge Edge2;
///
/// The pt
///
internal System.Numerics.Vector2 Pt;
#pragma warning restore SA1401 // Field must be private
}
}