summaryrefslogtreecommitdiff
path: root/lib/scale/shapes/rectangle.rb
blob: 8aaa01ed1c86cefcc7b6fa4c320811e09a79cfd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Scale
  class Rectangle
    include Node
    attribute :width, String
    attribute :height, String
    attribute :fill, String
    attribute :x, Integer
    attribute :y, Integer
    attribute :rx, Integer
    attribute :ry, Integer

    def xml_tag
      :rect
    end
  end
end