# File mrplot/magick.rb, line 234
    def draw_line_segments(points, style)
      if !style.single_lines then    
        
        line = Array.new
        
        points.each do |point|
          temp = transform(point)
          
          next if temp.y.nan?
                    
          line << temp.x
          line << temp.y
        end
        
        applystyle(@gc, style, :line)
        @gc.polyline(*line)
      else
        super(points, style)
      end
    end