enum ImPlotLocation_

#include <implot.h>

enum ImPlotLocation_
{
    ImPlotLocation_Center    = 0,
    ImPlotLocation_North     = 1<<0,
    ImPlotLocation_South     = 1<<1,
    ImPlotLocation_West      = 1<<2,
    ImPlotLocation_East      = 1<<3,
    ImPlotLocation_NorthWest = ImPlotLocation_North | ImPlotLocation_West,
    ImPlotLocation_NorthEast = ImPlotLocation_North | ImPlotLocation_East,
    ImPlotLocation_SouthWest = ImPlotLocation_South | ImPlotLocation_West,
    ImPlotLocation_SouthEast = ImPlotLocation_South | ImPlotLocation_East,
};