Method: Cocoa#CGRectMake

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

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



20
21
22
# File 'lib/cocoa/structs/NSRect.rb', line 20

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