summaryrefslogtreecommitdiff
path: root/ruby_2_2/ext/tk/sample/tkextlib/blt/plot1b.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/ext/tk/sample/tkextlib/blt/plot1b.rb')
-rw-r--r--ruby_2_2/ext/tk/sample/tkextlib/blt/plot1b.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/ruby_2_2/ext/tk/sample/tkextlib/blt/plot1b.rb b/ruby_2_2/ext/tk/sample/tkextlib/blt/plot1b.rb
deleted file mode 100644
index 8a3ce8216d..0000000000
--- a/ruby_2_2/ext/tk/sample/tkextlib/blt/plot1b.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env ruby
-require 'tk'
-require 'tkextlib/blt'
-
-graph = Tk::BLT::Graph.new.pack
-plot = graph.element_create
-plot.configure(:linewidth=>0, :label=>'foo',
- :data=>[[1.0, 3.4], [1.1, 2.8], [1.2, 3.1], [1.4, 2.9]].flatten)
-
-Tk.mainloop