class Tioga::FigureMaker

Public Class Methods

def_enter_page_function do |t| ... end click to toggle source

Defines the block to be the enter_page_function for ::default.

# File lib/Tioga/Doc.rb, line 99
def FigureMaker.def_enter_page_function(&cmd)
end
default click to toggle source
default = a_FigureMaker

The default FigureMaker is typically the one to use. Most tioga figure class definitions begin their initialization by storing this in an instance variable for easy access in the figure methods.

# File lib/Tioga/Doc.rb, line 74
def FigureMaker.default
end
default=(fm) click to toggle source
# File lib/Tioga/Doc.rb, line 77
def FigureMaker.default=(fm)
end
exec do |t| ... end click to toggle source

Executes the block with ::default as argument.

# File lib/Tioga/Doc.rb, line 84
def FigureMaker.exec(&cmd)
end
make_pdf(name) do |t| ... end click to toggle source

Executes the block to create a pdf with the given name. The argument for the block is ::default.

# File lib/Tioga/Doc.rb, line 92
def FigureMaker.make_pdf(name,&cmd)
end
page_style do |t| ... end click to toggle source

Alias for ::def_enter_page_function. Defines the block to be the enter_page_function for ::default.

# File lib/Tioga/Doc.rb, line 107
def FigureMaker.page_style(&cmd)
end
version click to toggle source

Returns a string defining the current tioga version.

# File lib/Tioga/Doc.rb, line 114
def FigureMaker.version
end