当前位置: 首页>>代码示例>>C#>>正文


C# PathSegmentCollection.Skip方法代码示例

本文整理汇总了C#中PathSegmentCollection.Skip方法的典型用法代码示例。如果您正苦于以下问题:C# PathSegmentCollection.Skip方法的具体用法?C# PathSegmentCollection.Skip怎么用?C# PathSegmentCollection.Skip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PathSegmentCollection的用法示例。


在下文中一共展示了PathSegmentCollection.Skip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: HandleClosedPaths

        private Geometry HandleClosedPaths(IImmutableList<Tuple<Coords, Coords, Direction>> combinedLineSegments, PathSegmentCollection segments)
        {
            var lastLineSegment = combinedLineSegments.Last();
            var firstLineSegment = combinedLineSegments.First();

            if (Equals(firstLineSegment.Item1, lastLineSegment.Item2))
            {
                // Only the 'O' tetra stick has a closed line.
                // The following code relies on the 'O' tetra stick
                // line going Up then Right then Down then Left.
                // Ideally, it should not rely on this but life is
                // too short!

                Debug.Assert(segments.Count%2 == 0);
                var halfLength = segments.Count/2;
                var innerSegments = segments.Skip(halfLength).ToList();
                var outerSegments = segments.Take(halfLength).ToList();

                var cornerSegments = new PathSegmentCollection();
                AddCornerDownThenRight(cornerSegments, lastLineSegment.Item2);

                outerSegments[0] = cornerSegments[0];
                innerSegments.RemoveAt(0);
                innerSegments.Add(cornerSegments[1]);

                var outerGeometry = new PathGeometry
                {
                    Figures = new PathFigureCollection
                    {
                        new PathFigure
                        {
                            StartPoint = CoordsToInsetLowerLeftVertical(lastLineSegment.Item2),
                            Segments = new PathSegmentCollection(outerSegments)
                        }
                    }
                };

                var innerGeometry = new PathGeometry
                {
                    Figures = new PathFigureCollection
                    {
                        new PathFigure
                        {
                            StartPoint = CoordsToInsetLowerRightVertical(lastLineSegment.Item2),
                            Segments = new PathSegmentCollection(innerSegments)
                        }
                    }
                };

                return new CombinedGeometry(GeometryCombineMode.Exclude, outerGeometry, innerGeometry);
            }

            return new PathGeometry
            {
                Figures = new PathFigureCollection
                    {
                        new PathFigure
                        {
                            StartPoint = GetStartingPoint(combinedLineSegments),
                            Segments = segments
                        }
                    }
            };
        }
开发者ID:taylorjg,项目名称:TetraSticks,代码行数:64,代码来源:BoardControl.xaml.cs


注:本文中的PathSegmentCollection.Skip方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。