struct ImPlot::IndexerLin

Overview

struct IndexerLin
{
    // typedefs

    typedef double value_type;

    // fields

    const double M;
    const double B;

    // construction

    IndexerLin(
        double m,
        double b
        );

    // methods

    template <typename I>
    IMPLOT_INLINE double operator [] (I idx) const;
};