Class: Pango::Rectangle

Inherits:
Object
  • Object
show all
Defined in:
lib/pango/rectangle.rb

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Rectangle.

[View source]

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

Instance Method Details

#initialize_rawObject

[View source]

19
# File 'lib/pango/rectangle.rb', line 19

alias_method :initialize_raw, :initialize