📄 astar.h
字号:
#pragma once
struct STWay
{
int angle;
int step;
STWay(int a, int s) : angle(a), step(s) { ; }
};
// way desc
// 3 2 0 1 ..bits
// dy+1 dx+1
extern bool astar8way(const byte *map, int x1, int y1, int x2, int y2, std::list<STWay> &ways, float radius);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -