From ebe40c46c9c7a2b4f5c4a7fa0bb90cdf9d78fc00 Mon Sep 17 00:00:00 2001 From: omar Date: Wed, 25 Jan 2023 18:07:34 +0100 Subject: [PATCH] Updated About the IMGUI paradigm (markdown) --- About-the-IMGUI-paradigm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/About-the-IMGUI-paradigm.md b/About-the-IMGUI-paradigm.md index aad3264..94ad711 100644 --- a/About-the-IMGUI-paradigm.md +++ b/About-the-IMGUI-paradigm.md @@ -82,7 +82,7 @@ if (Lib_MenuItem("SAVE")) m_Document->Save(); ``` -This is a simple and perhaps exaggerated example provided to ease getting a quick first-intuition about the difference of IMGUI vs RMGUI. There are lots of things to say and criticize about this example. But it should showcase the core idea that IMGUI **tends to facilitate data binding, action binding, and creation/destruction of widgets**. It does facilitate those things because it generally doesn't need them. +This is a simple and perhaps exaggerated example provided to ease getting a quick first-intuition about the difference of IMGUI vs RMGUI. There are lots of things to say and criticize about this example. It tends to illustrates the shortcoming of RMGUIs before fully illustrating the shortcomings of IMGUIs. But it should illustrate the core benefit that IMGUI **tends to facilitate data binding, action binding, and creation/destruction of widgets**. It does facilitate those things because it generally doesn't need them. ### History