public void DrawFilledPolygon(Polynom polygon, Color color) { foreach (var point in polygon.FloodFill()) { Draw(Pixel, point, color); } }