本文整理汇总了C#中IntRect.Encapsulate方法的典型用法代码示例。如果您正苦于以下问题:C# IntRect.Encapsulate方法的具体用法?C# IntRect.Encapsulate怎么用?C# IntRect.Encapsulate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IntRect
的用法示例。
在下文中一共展示了IntRect.Encapsulate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EncapsulateRect_ResizesProperly
public static void EncapsulateRect_ResizesProperly()
{
IntRect a = new IntRect(1, 1, 5, 5);
IntRect b = new IntRect(0, 0, 10, 10);
a.Encapsulate(b);
Assert.AreEqual(10, a.size_.x);
Assert.AreEqual(10, a.size_.y);
}
示例2: EncapsulatePoint_BottomLeftPoint_ResizesProperly
public static void EncapsulatePoint_BottomLeftPoint_ResizesProperly()
{
IntRect rect = new IntRect(5, 5, 1, 1);
var p = new Vector3(0, 0, 0);
rect.Encapsulate(p);
Assert.AreEqual(6, rect.size_.x);
Assert.AreEqual(6, rect.size_.y);
p.x = -5;
rect.Encapsulate(p);
Assert.AreEqual(11, rect.size_.x);
}
示例3: EncapsulatePoint_UpperRightPoint_ResizesProperly
public static void EncapsulatePoint_UpperRightPoint_ResizesProperly()
{
IntRect rect = new IntRect(5, 5, 1, 1);
var p = new Vector3(8, 8, 8);
rect.Encapsulate(p);
Assert.AreEqual(4, rect.size_.x);
Assert.AreEqual(4, rect.size_.y);
p.x = 15;
rect.Encapsulate(p);
Assert.AreEqual(11, rect.size_.x);
}