template struct ImPlot::Fitter1

Overview

template <typename _Getter1>
struct Fitter1
{
    // fields

    const _Getter1& Getter;

    // construction

    Fitter1(const _Getter1& getter);

    // methods

    void Fit(
        ImPlotAxis& x_axis,
        ImPlotAxis& y_axis
        ) const;
};