mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
287 B
Ruby
16 lines
287 B
Ruby
![]() |
#
|
||
|
# tkextlib/blt/eps.rb
|
||
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
||
|
#
|
||
|
|
||
|
require 'tk'
|
||
|
require 'tk/canvas'
|
||
|
require 'tkextlib/blt.rb'
|
||
|
|
||
|
module Tk::BLT
|
||
|
class EPS < TkcItem
|
||
|
CItemTypeName = 'eps'.freeze
|
||
|
CItemTypeToClass[CItemTypeName] = self
|
||
|
end
|
||
|
end
|