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.2.13 test/ox/line.rb
ox-1.2.12 test/ox/line.rb
ox-1.2.11 test/ox/line.rb
ox-1.2.10 test/ox/line.rb
ox-1.2.9 test/ox/line.rb
ox-1.2.8 test/ox/line.rb
ox-1.2.7 test/ox/line.rb
ox-1.2.6 test/ox/line.rb
ox-1.2.5 test/ox/line.rb
ox-1.2.4 test/ox/line.rb
ox-1.2.3 test/ox/line.rb
ox-1.2.2 test/ox/line.rb
ox-1.2.1 test/ox/line.rb
ox-1.2.0 test/ox/line.rb
ox-1.1.1 test/ox/line.rb
ox-1.1.0 test/ox/line.rb
ox-1.0.3 test/ox/line.rb
ox-1.0.2 test/ox/line.rb
ox-1.0.1 test/ox/line.rb
ox-1.0.0 test/ox/line.rb