本文整理汇总了C#中Region.Copy方法的典型用法代码示例。如果您正苦于以下问题:C# Region.Copy方法的具体用法?C# Region.Copy怎么用?C# Region.Copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Region
的用法示例。
在下文中一共展示了Region.Copy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IrregularSurface
/// <summary>
/// Constructs an IrregularSurface by copying the given region-of-interest from an Image.
/// </summary>
/// <param name="source">The Surface to copy pixels from.</param>
/// <param name="roi">Defines the Region from which to copy pixels from the Image.</param>
public IrregularSurface(Cairo.ImageSurface source, Region roi)
{
Region roiClipped = (Region)roi.Copy ();
roiClipped.Intersect (Region.Rectangle (source.GetBounds ()));
Rectangle[] rects = roiClipped.GetRectangles ();
this.placedSurfaces = new List<PlacedSurface> (rects.Length);
foreach (Rectangle rect in rects)
this.placedSurfaces.Add (new PlacedSurface (source, rect));
this.region = roiClipped;
}
示例2: Step_20_TestEntityHelper_Generated
/// <summary>
/// Test methods exposed by the EntityHelper class.
/// </summary>
private void Step_20_TestEntityHelper_Generated()
{
using (TransactionManager tm = CreateTransaction())
{
mock = CreateMockInstance(tm);
Region entity = mock.Copy() as Region;
entity = (Region)mock.Clone();
Assert.IsTrue(Region.ValueEquals(entity, mock), "Clone is not working");
}
}