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


C# Rect.max_y方法代码示例

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


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

示例1: intersects

 public bool intersects(Rect rr)
 {
     if (rr == null)
         return false;
     if (rr.max_x() < this.x)
         return false;
     if (rr.x > this.max_x())
         return false;
     if (rr.max_y() < this.y)
         return false;
     if (rr.y > this.max_y())
         return false;
     return true;
 }
开发者ID:sglasby,项目名称:HRAOS,代码行数:14,代码来源:Rect.cs

示例2: overlapRect

    public Rect overlapRect(Rect rr)
    {
        if (!this.intersects(rr))
            return null;

        // Determine the x origin of the intersection:
        int new_xx;
        if (rr.x < x)
            new_xx = x;
        else
            new_xx = rr.x;

        // Determine the y origin of the intersection:
        int new_yy;
        if (rr.y < y)
            new_yy = y;
        else
            new_yy = rr.y;

        // Determine the maximum x of the intersection:
        int new_max_x;
        if (rr.max_x() < max_x())
            new_max_x = rr.max_x();
        else
            new_max_x = max_x();

        // Determine the maximum y of the intersection:
        int new_max_y;
        if (rr.max_y() < max_y())
            new_max_y = rr.max_y();
        else
            new_max_y = max_y();

        // Determine width and height:
        int new_ww = new_max_x - new_xx;
        int new_hh = new_max_y - new_yy;

        Rect new_rect = new Rect(new_xx, new_yy, new_ww, new_hh);
        return new_rect;
    }
开发者ID:sglasby,项目名称:HRAOS,代码行数:40,代码来源:Rect.cs


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