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

    def xml_tag
      :rect
    end
  end
end