class CTioga2::Graphics::Styles::BaseContourStyle

The base for a contour plot

Public Instance Methods

make_contour(table, level, opts = {}) click to toggle source
# File lib/ctioga2/graphics/styles/contour.rb, line 32
def make_contour(table, level, opts = {})
  if @conrec && (! opts.key? 'method')
    opts['method'] = 'conrec'
  end
  return table.make_contour(level, opts)
end