加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ballPath.m 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
AnChangNice 提交于 2019-01-13 21:13 . Add files via upload
function position = ballPath(x0, y0, x2, y2, w, h)
%% 做向量的延长线,球交点
% 折射次数
times = 0;
% 坐标
position.x = [];
position.y = [];
while ~((0 < x2 && x2 < w) && (0 < y2 && y2 < h))
% 特殊情况 0 90 180 -90
v_angle = atan2(y2-y0, x2-x0)*180/pi;
% 设定反射次数
if times == 2
break;
end
% x = 0
if x2 < 0 && x0 > 0
y = y0 + (y2-y0)*(0-x0)/(x2-x0);
if 0 < y && y < h && y0 ~= y || v_angle == 180
position.x = [position.x, 0];
position.y = [position.y, y];
x2 = 0-x2;
x0 = 0;
y0 = y;
times = times + 1;
continue;
end
end
% y = h
if y0 < h && h < y2
x = x0 + (x2-x0)*(h-y0)/(y2-y0);
if 0 < x && x < w && x0 ~= x || v_angle == 90
position.x = [position.x, x];
position.y = [position.y, h];
y2 = 2*h - y2;
x0 = x;
y0 = h;
times = times + 1;
continue;
end
end
% x = w
if x0 < w && w < x2
y = y0 + (y2-y0)*(w-x0)/(x2-x0);
if 0 < y && y < h && y0 ~= y || v_angle == 0
position.x = [position.x, w];
position.y = [position.y, y];
x2 = 2*w - x2;
x0 = w;
y0 = y;
times = times + 1;
continue;
end
end
% y = 0
if y2 < 0 && 0 < y0
x = x0 + (x2-x0)*(0-y0)/(y2-y0);
if 0 < x && x < w && x0 ~= x || v_angle == -90
position.x = [position.x, x];
position.y = [position.y, 0];
y2 = 0-y2;
x0 = x;
y0 = 0;
times = times + 1;
continue;
end
end
end
%% 添加终止位置
position.x = [position.x, x2];
position.y = [position.y, y2];
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化