struct ImPlot::Transformer2

Overview

struct Transformer2
{
    // fields

    Transformer1 Tx;
    Transformer1 Ty;

    // construction

    Transformer2(
        const ImPlotAxis& x_axis,
        const ImPlotAxis& y_axis
        );

    Transformer2(const ImPlotPlot& plot);
    Transformer2();

    // methods

    template <typename P>
    IMPLOT_INLINE ImVec2 operator () (const P& plt) const;

    template <typename T>
    IMPLOT_INLINE ImVec2 operator () (
        T x,
        T y
        ) const;
};