TerraForge3D  2.3.1
3D Terrain And Landscape Generator
ImGuiShapes.h
1#pragma once
2
3#include "imgui.h"
4
5namespace ImGui
6{
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);
11}