gpt4 book ai didi

c++ - 矩形相交代码 - 这是对的吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:20:48 26 4
gpt4 key购买 nike

谁能告诉我我的矩形相交代码是否正确?

bool checkCollide(int x, int y, int oWidth, int oHeight,
int x2, int y2, int o2Width, int o2Height) {

bool collide = false;

if (x >= x2 && x <= x2+o2Width && y >= y2 && y <= y2+o2Height)
collide = true;

if (x+oWidth >= x2 && x+oWidth <= x2+o2Width && y >= y2 && y <= y2+o2Height)
collide = true;

if (x >= x2 && x<= x2+o2Width && y+oHeight >= y2 && y+oHeight <= y2+o2Height)
collide = true;

if (x+oWidth >= x2 && x+oWidth <= x2+o2Width && y+oHeight >= y2 && y+oHeight <= y2+o2Height)
collide = true;

return collide;
}

最佳答案

不,一个矩形的角不必在另一个矩形中,矩形就会发生碰撞。你想要做的是在它们不相交时找到逻辑并使用它的否定。下图显示了两个明显相交的矩形,但只有边相交,角没有相交。

enter image description here

只需制定如下逻辑:蓝色不与红色相交需要什么条件?好吧,它要么完全向右,要么完全向左,要么向上,要么向下。制定一个 if 语句并否定它。让我帮助您开始:

if (!(x2 > x+oWidth || x2+o2Width < x || ..))
collide = true;

关于c++ - 矩形相交代码 - 这是对的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6082624/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com