2023-12-17 16:11:35 +08:00
|
|
|
#ifndef TRANSFORM_TABLE_H_
|
|
|
|
|
#define TRANSFORM_TABLE_H_
|
|
|
|
|
|
|
|
|
|
#include "zf_common_headfile.h"
|
|
|
|
|
|
|
|
|
|
|
2024-01-08 20:13:20 +08:00
|
|
|
extern const float InverseMapH[120][188] ;
|
|
|
|
|
extern const float InverseMapW[120][188] ;
|
2023-12-17 16:11:35 +08:00
|
|
|
void transform(float X, float Y, int* x, int* y);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* TRANSFORM_TABLE_H_ */
|
|
|
|
|
|
|
|
|
|
|