IMGUI_APIboolDragInt(ofParameter<int>&v,floatv_speed=1.0f,intv_min=0,intv_max=0,constchar*format="%d");// If v_min >= v_max we have no bound
IMGUI_APIboolDragInt(constchar*label,ofParameter<int>*v,floatv_speed=1.0f,intv_min=0,intv_max=0,constchar*format="%d");// If v_min >= v_max we have no bound
IMGUI_APIboolSliderFloat(ofParameter<float>&v,floatv_min,floatv_max,constchar*format="%.3f",floatpower=1.0f);// adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for power curve sliders
IMGUI_APIboolSliderFloat(constchar*label,ofParameter<float>*v,floatv_min,floatv_max,constchar*format="%.3f",floatpower=1.0f);// adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for power curve sliders
IMGUI_APIboolColorButton(constchar*desc_id,ofColorconst&col,ImGuiColorEditFlagsflags=0,ImVec2size=ImVec2(0,0));// display a colored square/button, hover for details, return true when pressed.