protected AbstractFloodFiller(AbstractFloodFiller configSource) { FillColor = Rgba32.Magenta; Tolerance = new byte[] { 25, 25, 25 }; if (configSource != null) { Bitmap = configSource.Bitmap; FillColor = configSource.FillColor; FillDiagonally = configSource.FillDiagonally; Tolerance = configSource.Tolerance; } }
public QueueLinearFloodFiller(AbstractFloodFiller configSource) : base(configSource) { }