struct MyImPlot::Vector2f

Overview

struct Vector2f
{
    // fields

    float x;
    float y;

    // construction

    Vector2f(
        float _x,
        float _y
        );
};