struct ImVec4

Overview

#include <imgui.h>

struct ImVec4
{
    // fields

    float x;
    float y;
    float z;
    float w;

    // construction

    ImVec4();

    ImVec4(
        float _x,
        float _y,
        float _z,
        float _w
        );
};