struct ImPlot::Transformer1

Overview

struct Transformer1
{
    // fields

    double ScaMin;
    double ScaMax;
    double PltMin;
    double PltMax;
    double PixMin;
    double M;
    ImPlotTransform TransformFwd;
    void* TransformData;

    // construction

    Transformer1(
        double pixMin,
        double pltMin,
        double pltMax,
        double m,
        double scaMin,
        double scaMax,
        ImPlotTransform fwd,
        void* data
        );

    // methods

    template <typename T>
    IMPLOT_INLINE float operator () (T p) const;
};