Function 関数

NSDivideRect(_:_:_:_:_:)

Divides a rectangle into two new rectangles. ある矩形を2つの新しい矩形へと分割します。

Declaration 宣言

func NSDivideRect(_ inRect: NSRect, 
                _ slice: UnsafeMutablePointer<NSRect>, 
                _ rem: UnsafeMutablePointer<NSRect>, 
                _ amount: CGFloat, 
                _ edge: NSRectEdge)

Discussion 議論

Creates two rectangles—slice and rem—from inRect, by dividing inRect with a line that’s parallel to the side of inRect specified by edge. The size of slice is determined by amount, which specifies the distance from edge. 2つの矩形 — slicerem — をinRectから、inRectedgeによって指定されるinRectの辺に平行なある線で分割することによって作成します。sliceの大きさは、amountによって決定され、それはedgeからの隔たりを指定します。

slice and rem must not be NULL. sliceremは、NULLであってはなりません。

For more information, see NSRectEdge. 詳細は、NSRectEdgeを見てください。

See Also 参照

Managing Rectangles 矩形を管理する