Class: GD2::Canvas::Rectangle
- Inherits:
-
Object
- Object
- GD2::Canvas::Rectangle
- Defined in:
- lib/gd2/canvas.rb
Direct Known Subclasses
Instance Method Summary collapse
- #draw(image, mode) ⇒ Object
- #draw_sym ⇒ Object
-
#initialize(point1, point2) ⇒ Rectangle
constructor
A new instance of Rectangle.
Constructor Details
#initialize(point1, point2) ⇒ Rectangle
Returns a new instance of Rectangle.
68 69 70 |
# File 'lib/gd2/canvas.rb', line 68 def initialize(point1, point2) @p1, @p2 = point1, point2 end |
Instance Method Details
#draw(image, mode) ⇒ Object
72 73 74 75 |
# File 'lib/gd2/canvas.rb', line 72 def draw(image, mode) GD2FFI.send(draw_sym, image.image_ptr, @p1.x.to_i, @p1.y.to_i, @p2.x.to_i, @p2.y.to_i, mode.to_i) nil end |
#draw_sym ⇒ Object
77 78 79 |
# File 'lib/gd2/canvas.rb', line 77 def draw_sym :gdImageRectangle end |