Method: Pango::Rectangle#initialize

Defined in:
lib/pango/rectangle.rb

#initialize(x, y, width, height) ⇒ Rectangle

Returns a new instance of Rectangle.


20
21
22
23
24
25
26
# File 'lib/pango/rectangle.rb', line 20

def initialize(x, y, width, height)
  initialize_raw
  self.x = x
  self.y = y
  self.width = width
  self.height = height
end