struct ImPlot::ImPlotPoint3D

Overview

struct ImPlotPoint3D
{
    // fields

    double x;
    double y;
    double z;

    // construction

    ImPlotPoint3D();

    ImPlotPoint3D(
        double _x,
        double _y,
        double _z
        );

    // methods

    double& operator [] (size_t idx);
    double operator [] (size_t idx) const;
};