func fill(using: NSCompositingOperation)
Given a sequence of rectangular regions and associated colors, fills those regions in the current graphics context with the context’s fill color.
矩形領域それらと関連色それらからなるあるシーケンスを与えられて、それらの領域を現在のグラフィクス文脈の中でその文脈のもつ塗りつぶし色で塗りつぶします。
Available when
Element
is NSRect
.
Element
がNSRect
である時に利用可能です。
func fill(using: NSCompositingOperation)
Given a sequence of rectangular regions and gray component values, fills those regions in the current graphics context.
矩形領域それらとグレー成分値それらからなるあるシーケンスを与えられて、それらの領域を現在のグラフィクス文脈の中で塗りつぶします。
Available when
Element
is (CGRect, gray: CGFloat)
.
Element
が(CGRect, gray: CGFloat)
である時に利用可能です。
func clip()
Given a sequence of rectangular regions, modifies the current graphics context clipping path by intersecting it with the union of these rectangles.
矩形領域それらからなるあるシーケンスを与えられて、現在のグラフィクス文脈クリッピングパスを、それをそれら矩形の合併と交差させることによって修正します。
Available when
Element
is NSRect
.
Element
がNSRect
である時に利用可能です。