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


C# RectangleF.IntersectsOrBorders方法代码示例

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


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

示例1: Simulation

        /// <summary>
        ///     Initializes a new instance of the <see cref="Simulation" /> class.
        /// </summary>
        /// <param name="teams">The teams to be played against each other.</param>
        /// <param name="ball">The ball.</param>
        /// <param name="pitchBounds">The pitch boundaries.</param>
        /// <param name="friction">The friction coefficient.</param>
        public Simulation(ReadOnlyCollection<Team> teams, PointMass ball, RectangleF pitchBounds, float friction)
        {
            Contract.Requires<ArgumentNullException>(teams != null);
            Contract.Requires<ArgumentNullException>(ball != null);
            Contract.Requires<ArgumentException>(friction >= 0);
            Contract.Requires<ArgumentException>(pitchBounds.Width > 0 && pitchBounds.Height > 0);
            Contract.Requires<ArgumentException>(Contract.ForAll(teams, t =>
                t != null &&
                pitchBounds.IntersectsOrBorders(t.GoalBounds) &&
                t.Players.All(p => pitchBounds.Contains(p.Position))));
            Contract.Requires<ArgumentException>(pitchBounds.Contains(ball.Position));

            _simulate = SimulatePlaying;
            _teams = teams;
            _startingPositions = (from t in teams select (from p in t.Players select p.Position).ToList().AsReadOnly()).ToList().AsReadOnly();
            _ball = ball;
            _ballStartingPosition = ball.Position;
            PitchBounds = pitchBounds;
            Friction = friction;
        }
开发者ID:PurdueSIGAI,项目名称:Soccer,代码行数:27,代码来源:Simulation.cs

示例2: IsValid

 public bool IsValid(RectangleF pitchBounds)
     =>
         pitchBounds.IntersectsOrBorders(GoalBounds) &&
         Players.All(p => pitchBounds.Contains(p.Position));
开发者ID:prashast1310,项目名称:Soccer,代码行数:4,代码来源:Team.cs


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