Sha256: c91f47cc11cd92e4fa090012d35e77d5a6a92de7b3ca34a376289d0d3c258c04
Contents?: true
Size: 818 Bytes
Versions: 1
Compression:
Stored size: 818 Bytes
Contents
module GridGenerator class Line COLOURS = { fill: "#d0d0d0", stroke: "#404040" } def initialize(a:, b:) @a, @b = a, b end attr_reader :a, :b def ==(other) self.class == other.class && self.a == other.a && self.b == other.b end def +(offset) if offset.class == Matrix new_a = a + offset new_b = b + offset self.class.new(a: new_a, b: new_b) else raise ArgumentError, "Offset must be Matrix" end end def x1 a[0,0] end def y1 a[1,0] end def x2 b[0,0] end def y2 b[1,0] end def to_svg "<line x1=\"#{x1}\" y1=\"#{y1}\" x2=\"#{x2}\" y2=\"#{y2}\" style=\"stroke:#{COLOURS[:stroke]};stroke-width:1\" />" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grid_generator-0.3.2 | lib/grid_generator/line.rb |