struct ImPlotTime

Overview

#include <implot_internal.h>

struct ImPlotTime
{
    // fields

    time_t S;
    int Us;

    // construction

    ImPlotTime();

    ImPlotTime(
        time_t s,
        int us = 0
        );

    // methods

    void RollOver();
    double ToDouble() const;
    static ImPlotTime FromDouble(double t);
};