1 Star 1 Fork 1

A.Star/pathPlanning4m

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
getCoor.m 613 Bytes
一键复制 编辑 原始数据 按行查看 历史
unknown 提交于 2017-05-30 14:37 . 新建避障路径规划算法代码
function [x,y] = getCoor(p1,p2,p3,p4)
% 求p1,p2所构成的线段与p3,p4所构成的线段的交点
% 其中
% x,y为空矩阵,代表线段无交点
% x,y为nan,代表线段平行
% 如果为其他,那么x,y表示交点坐标
% See also getCoorWithoutEndpoint getABC jiaodian
% Author A.Star
% e-mail : chenxiaolong12315@163.com
% 2017-5-30
line1 = getABC(p1,p2);
line2 = getABC(p3,p4);
[x,y] = jiaodian(line1,line2);
if ~(isnan(x) && isnan(y))
if (x - p1(1))*(x - p2(1))<=0 && (y - p1(2))*(y - p2(2))<=0 && (x - p3(1))*(x - p4(1))<=0 && (y - p3(2))*(y - p4(2))<=0
return
else
x = [];
y = [];
end
else
return;
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/a_star/pathPlanning4m.git
git@gitee.com:a_star/pathPlanning4m.git
a_star
pathPlanning4m
pathPlanning4m
master

搜索帮助