本文整理汇总了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;
}
示例2: IsValid
public bool IsValid(RectangleF pitchBounds)
=>
pitchBounds.IntersectsOrBorders(GoalBounds) &&
Players.All(p => pitchBounds.Contains(p.Position));