File: bezier.rb

package info (click to toggle)
ruby-gruff 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 852 kB
  • sloc: ruby: 4,929; makefile: 3
file content (46 lines) | stat: -rw-r--r-- 1,115 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require File.dirname(__FILE__) + '/base'

class Gruff::Bezier < Gruff::Base
  def draw
    super

    return unless @has_data

    @x_increment = @graph_width / (@column_count - 1).to_f

    @norm_data.each do |data_row|
      poly_points = Array.new
      @d = @d.fill data_row[DATA_COLOR_INDEX]

      data_row[1].each_with_index do |data_point, index|
        # Use incremented x and scaled y
        new_x = @graph_left + (@x_increment * index)
        new_y = @graph_top + (@graph_height - data_point * @graph_height)

        if index == 0 && RUBY_PLATFORM != 'java'
          poly_points << new_x
          poly_points << new_y
        end

        poly_points << new_x
        poly_points << new_y

        draw_label(new_x, index)
      end
   
      @d = @d.fill_opacity 0.0
      @d = @d.stroke data_row[DATA_COLOR_INDEX]
      @d = @d.stroke_width clip_value_if_greater_than(@columns / (@norm_data.first[1].size * 4), 5.0)

      if RUBY_PLATFORM == 'java'
        @d = @d.polyline(*poly_points)
      else
        @d = @d.bezier(*poly_points)
      end
    end

    @d.draw(@base_image)
  end
   

end