Method: Cocoa#NSMakeRect

Defined in:
lib/cocoa/structs/NSRect.rb

#NSMakeRect(x, y, width, height) ⇒ Object



23
24
25
# File 'lib/cocoa/structs/NSRect.rb', line 23

def NSMakeRect x,y,width,height
  CGRect.new(x: x, y: y, width: width, height: height)
end