// // 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; /// /// Scanbeam /// internal class Scanbeam // would this work as a struct? { #pragma warning disable SA1401 // Field must be private /// /// The y /// internal float Y; /// /// The next /// internal Scanbeam Next; #pragma warning restore SA1401 // Field must be private } }