Function 関数

NSUnionRect(_:_:)

Calculates the union of two rectangles. 2つの矩形の併合を計算する。

Declaration 宣言

func NSUnionRect(_ aRect: NSRect, 
               _ bRect: NSRect) -> NSRect

Discussion 議論

Returns the smallest rectangle that completely encloses both aRect and bRect. If one of the rectangles has 0 (or negative) width or height, a copy of the other rectangle is returned; but if both have 0 (or negative) width or height, the returned rectangle has its origin at (0.0, 0.0) and has 0 width and height. aRectbRectの両方を完全に囲む、最も小さい矩形を返します。一方の矩形が0(または負)の幅または高さを持つならば、他方の矩形のコピーが返されます;しかし両方が0(または負)の幅または高さを持つならば、返される矩形はそれの起点 (0.0, 0.0) と0の幅と高さを持ちます。

See Also 参照

Managing Rectangles 矩形を管理する