struct ImPlotPointError

Overview

#include <implot_internal.h>

struct ImPlotPointError
{
    // fields

    double X;
    double Y;
    double Neg;
    double Pos;

    // construction

    ImPlotPointError();

    ImPlotPointError(
        double x,
        double y,
        double neg,
        double pos
        );
};