gpt4 book ai didi

intersection - 矢量与圆锥的交点

转载 作者:行者123 更新时间:2023-12-04 04:42:48 25 4
gpt4 key购买 nike

我有一个向量 A 定义为:(Ao+t∗Ad)

我还有一个圆锥体,其顶点(圆锥尖)V、轴方向D、底半径R 和高度H .

如何找到矢量和圆锥体之间的交点?我正在使用 glm 进行数学运算。

这是一个简单的例子: enter image description here

最佳答案

我不会处理光线与圆锥相交的所有情况,例如光线是否位于圆锥上或光线是否与圆锥相切,因为在我的情况下这不是必需的,但这是我的解决方案结束于:

std::array<glm::vec3,2> getLine2ConeIntersection(const glm::vec3 &ap_,const glm::vec3 &ad_ , const glm::vec3 &coneBaseCntr_,const glm::vec3 &coneVertex_,float coneRadius_) const
{
std::array<glm::vec3,2> pois;
glm::vec3 axis = (coneBaseCntr_-coneVertex_);
glm::vec3 theta = (axis/glm::length(axis));
float m = pow(coneRadius_,2)/pow(glm::length(axis),2);
glm::vec3 w = (ap_-coneVertex_);

float a = glm::dot(ad_,ad_) - m*(pow(glm::dot(ad_,theta),2)) - pow(glm::dot(ad_,theta),2);
float b = 2.f*( glm::dot(ad_,w) - m*glm::dot(ad_,theta)*glm::dot(w,theta) - glm::dot(ad_,theta)*glm::dot(w,theta) );
float c = glm::dot(w,w) - m*pow(glm::dot(w,theta),2) - pow(glm::dot(w,theta),2);

float discriminant = pow(b,2) - (4.f*a*c);
if (discriminant >= 0)
{
pois[0] = (ap_+static_cast<float>(((-b) - sqrt(discriminant))/(2.f*a))*ad_);
pois[1] = (ap_+static_cast<float>(((-b) + sqrt(discriminant))/(2.f*a))*ad_);
}

return pois;
}

其中 ap_ 是矢量上的一个点,ad_ 是它的方向。

关于intersection - 矢量与圆锥的交点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34157690/

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