當前位置: 首頁>>代碼示例>>C#>>正文


C# Size.GetAllPoints方法代碼示例

本文整理匯總了C#中System.Drawing.Size.GetAllPoints方法的典型用法代碼示例。如果您正苦於以下問題:C# Size.GetAllPoints方法的具體用法?C# Size.GetAllPoints怎麽用?C# Size.GetAllPoints使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Drawing.Size的用法示例。


在下文中一共展示了Size.GetAllPoints方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Render

        public Color[,] Render(Size resolution, Area viewPort)
        {
            _log.InfoFormat("Starting to render ({0:N0}x{1:N0})", resolution.Width, resolution.Height);

            viewPort.LogViewport();

            var output = new Color[resolution.Width, resolution.Height];

            _log.Debug("Rendering points");

            var allPointsWithEscapeTimes =
                resolution
                .GetAllPoints()
                .AsParallel()
                .WithDegreeOfParallelism(GlobalArguments.DegreesOfParallelism)
                .Select(p => Tuple.Create(p, PickColor(FindEscapeTime(viewPort.GetNumberFromPoint(resolution, p)))))
                .AsEnumerable();

            foreach (var result in allPointsWithEscapeTimes)
            {
                output[result.Item1.X, result.Item1.Y] = result.Item2;
            }

            return output;
        }
開發者ID:ajalexander,項目名稱:Fractals,代碼行數:25,代碼來源:MandelbrotEscapeRendererFancy.cs

示例2: Render

        public Color[,] Render(Size resolution, Area viewPort)
        {
            _log.InfoFormat("Starting to render ({0:N0}x{1:N0})", resolution.Width, resolution.Height);

            viewPort.LogViewport();

            var areasToInclude = GetAreasToInclude(resolution, viewPort).ToArray();
            var checkForEdges = areasToInclude.Length > 1;

            var output = new Color[resolution.Width, resolution.Height];

            _log.Debug("Rendering points");

            var processedPixels = resolution
                .GetAllPoints()
                .AsParallel()
                .WithDegreeOfParallelism(GlobalArguments.DegreesOfParallelism)
                .Select(p => PickColorForPoint(p, viewPort, resolution, checkForEdges, areasToInclude))
                .AsEnumerable();

            foreach (var result in processedPixels)
            {
                output[result.Item1.X, result.Item1.Y] = result.Item2;
            }

            if (ShouldIncludeGrid)
            {
                _log.Debug("Rendering grid");
                RenderGrid(resolution, viewPort, output);
            }

            _log.Debug("Rendering axis");
            RenderAxis(resolution, viewPort, output);

            return output;
        }
開發者ID:ajalexander,項目名稱:Fractals,代碼行數:36,代碼來源:MandelbrotRenderer.cs

示例3: FindPoints

        public List<Complex> FindPoints(Size resolution, Area viewPort)
        {
            _log.InfoFormat("Looking for points ({0:N0}x{1:N0})", resolution.Width, resolution.Height);

            var results = new ConcurrentBag<Complex>();

            Parallel.ForEach(resolution.GetAllPoints(), new ParallelOptions { MaxDegreeOfParallelism = GlobalArguments.DegreesOfParallelism }, point =>
            {
                var number = viewPort.GetNumberFromPoint(resolution, point);

                if (IsInSet(number))
                {
                    results.Add(number);
                }
            });

            var resultList = results.ToList();

            _log.DebugFormat("Found {0:N0} points", resultList.Count);

            return resultList;
        }
開發者ID:ajalexander,項目名稱:Fractals,代碼行數:22,代碼來源:MandelbrotFinder.cs


注:本文中的System.Drawing.Size.GetAllPoints方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。