libpgplotxx.a (C++ interface to PGPLOT)

◆ extend()

Trange& pgplot::Trange::extend ( const Trange range)
inline

extend this range if argument range is larger

Definition at line 54 of file structs.h.

References max, and min.

Referenced by pgplot::pgaff::util::Extractrange< C >::operator()().

54  {
55  min=(min < range.min ? min : range.min);
56  max=(max > range.max ? max : range.max);
57  return(*this);
58  }
float min
range [min....max]
Definition: structs.h:44
float max
Definition: structs.h:44
Here is the caller graph for this function: