📄 mou_tp.h
字号:
/* mou_tp.h */
#define TRANSFORMATION_UNITS_PER_PIXEL 4
typedef struct
{
/*
* Coefficients for the transformation formulas:
*
* m = (ax + by + c) / s
* n = (dx + ey + f) / s
*
* These formulas will transform a device point (x, y) to a
* screen point (m, n) in fractional pixels. The fraction
* is 1 / TRANSFORMATION_UNITS_PER_PIXEL.
*/
int a, b, c, d, e, f, s;
} TRANSFORMATION_COEFFICIENTS;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -