Sha256: c383ba0c1e8bd81af995e863045f9c4a5834416a6d8e51a0a95c483f4fbe75ae

Contents?: true

Size: 369 Bytes

Versions: 40

Compression:

Stored size: 369 Bytes

Contents

module Test
  module Ox

    class Line
      include HasProps

      attr_accessor :x, :y, :dx, :dy
      attr_accessor :color
      attr_accessor :thick
      
      def initialize(x, y, dx, dy, thick, color)
        @x = x
        @y = y
        @dx = dx
        @dy = dy
        @thick = thick
        @color = color
      end

    end # Line
  end # Ox
end # Test

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
ox-1.5.4 test/ox/line.rb
ox-1.5.3 test/ox/line.rb
ox-1.5.2 test/ox/line.rb
ox-1.5.1 test/ox/line.rb
ox-1.5.0 test/ox/line.rb
ox-1.4.6 test/ox/line.rb
ox-1.4.5 test/ox/line.rb
ox-1.4.4 test/ox/line.rb
ox-1.4.3 test/ox/line.rb
ox-1.4.2 test/ox/line.rb
ox-1.4.1 test/ox/line.rb
ox-1.4.0 test/ox/line.rb
ox-1.3.5 test/ox/line.rb
ox-1.3.4 test/ox/line.rb
ox-1.3.3 test/ox/line.rb
ox-1.3.2 test/ox/line.rb
ox-1.3.1 test/ox/line.rb
ox-1.3.0 test/ox/line.rb
ox-1.2.15 test/ox/line.rb
ox-1.2.14 test/ox/line.rb