📄 gui__divideround.c
字号:
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : GUI__DivideRound.C
Purpose : Implementation of GUI__DivideRound
************************************************************************************************************/
#include "GUI_Protected.H"
/*************************************************************************************************************
Public code
*************************************************************************************************************/
/*************************************************************************************************************
GUI__DivideRound
This routine is used internally for computations. Primary goal is to minimize the effects of rounding
which occur if we simply divide.
*************************************************************************************************************/
int GUI__DivideRound(int a, int b)
{
int r = 0;
if (b)
{
r = ((a +b/2) / b);
}
return r;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -