📄 nebu_util.h
字号:
#ifndef NEBU_UTIL_H#define NEBU_UTIL_H/* small utility macros & functions */#include "base/nebu_types.h"#include <math.h>#define COS(X) cos( (X) * M_PI/180.0 )#define SIN(X) sin( (X) * M_PI/180.0 )#ifndef M_PI#define M_PI 3.141592654#endifvoid randomPermutation( int N, int *nodes );void clamp( float *f, float min, float max );void addList(List **l, void* data);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -