libpgplotxx.a (C++ interface to PGPLOT)

◆ axis() [2/2]

basic_device& pgplot::basic_device::axis ( const char *  opt,
const Trect line,
const Trange val,
const float &  step = 0.,
const int &  nsub = 0,
const float &  dmajl = 0.01,
const float &  dmajr = 0.01,
const float &  fmin = 0.3,
const float &  disp = 0.05,
const float &  orient = 0. 
)
inlineinherited

plot arbitrary axis

Definition at line 96 of file basicdevice.h.

References pgplot::basic_device::axis(), pgplot::basic_device::line(), pgplot::Trange::max, and pgplot::Trange::min.

101  {
102  return(this->axis(opt, line.x.min, line.y.min, line.x.max, line.y.max,
103  val.min, val.max, step, nsub, dmajl, dmajr, fmin,
104  disp, orient));
105  }
basic_device & axis(const char *opt, const float &x1, const float &y1, const float &x2, const float &y2, const float &v1, const float &v2, const float &step, const int &nsub, const float &dmajl, const float &dmajr, const float &fmin, const float &disp, const float &orient)
plot arbitrary axis
Definition: basicdevice.h:83
basic_device & line(const int &n, const float *xpts, const float *ypts)
draw an open polygon
Definition: basicdevice.h:218
Here is the call graph for this function: