7void DrawCircle(
float radius = 5, ImU32 color = ImColor(255, 255, 255),
float segments = 0,
float thickness = 1.0);
8void DrawFilledCircle(
float radius = 5, ImU32 color = ImColor(255, 255, 255),
float segments = 0);
9void DrawRect(ImVec2 size = ImVec2(10, 10), ImU32 color = ImColor(255, 255, 255),
float rounding = 0.0f,
float thickness = 1.0f);
10void DrawFilledRect(ImVec2 size = ImVec2(10, 10), ImU32 color = ImColor(255, 255, 255),
float rounding = 0.0f);