class GnuplotRB::Splot

Splot class correspond to simple 3D visualisation. Most of Plot's docs are right for Splot too.

Examples of usage are in a notebook

Public Class Methods

new(*datasets, **options) click to toggle source

@param *datasets [Sequence of Dataset or Array] either instances of Dataset class or

"[data, **dataset_options]"" arrays

@param options [Hash] see Plot top level doc for options examples

Calls superclass method GnuplotRB::Plot::new
# File lib/gnuplotrb/splot.rb, line 13
def initialize(*datasets, **options)
  super
  @cmd = 'splot '
end