template struct ImPlot::GetterError

Overview

template <typename T>
struct GetterError
{
    // typedefs

    typedef ImPlotPointError value_type;

    // fields

    const T*const Xs;
    const T*const Ys;
    const T*const Neg;
    const T*const Pos;
    const int Count;
    const int Offset;
    const int Stride;

    // construction

    GetterError(
        const T* xs,
        const T* ys,
        const T* neg,
        const T* pos,
        int count,
        int offset,
        int stride
        );

    // methods

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