struct ImVec2

Overview

#include <imgui.h>

struct ImVec2
{
    // fields

    float x;
    float y;

    // construction

    ImVec2();

    ImVec2(
        float _x,
        float _y
        );

    // methods

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