struct ImPlot::RollingBuffer

Overview

struct RollingBuffer
{
    // fields

    float Span;
    ImVector<ImVec2> Data;

    // methods

    void AddPoint(
        float x,
        float y
        );
};