Unity检测射线与球体交点数量代码实现(可能是最简单最高效的)

发布时间:2024年01月14日

上代码:

int RayCrossSphere(Ray ray, Sphere sphere)
{
	Vector3 originT0Center = sphere.center - ray.origin;
	float sqrtRadius = sphere.radius * sphere.radius;
	if (originT0Center.sqrMagnitude <= sqrtRadius)
	{
		return 1;
	}
	else
	{
		Vector3 project = Vector3.Project(originT0Center, ray.direction);
		if (Vector3.Dot(project, ray.direction) < 0)
		{
			return 0;
		}
		else
		{
			Vector3 vPoint = ray.origin + project;
			float centerToRaySubRadius = (vPoint - sphere.center).sqrMagnitude - sqrtRadius;
			if (centerToRaySubRadius > 0)
			{
				return 0;
			}
			else if (Mathf.Approximately(centerToRaySubRadius, 0))
			{
				return 1;
			}
			else
			{
				return 2;
			}
		}
	}
}

球体类补充:

public class Sphere
{
	public Vector3 center;
	public float radius;
}

原理参考链接

文章来源:https://blog.csdn.net/ttod/article/details/135579892
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。