本文整理汇总了C++中Hit::t方法的典型用法代码示例。如果您正苦于以下问题:C++ Hit::t方法的具体用法?C++ Hit::t怎么用?C++ Hit::t使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Hit
的用法示例。
在下文中一共展示了Hit::t方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: intersect
bool Sphere::intersect(const Ray& ray, Hit& hit) const
{
float a = (ray.direction.normalized()).dot(ray.direction.normalized());
float b = 2.0f * (ray.direction.normalized()).dot(ray.origin - mCenter);
float c = (ray.origin - mCenter).dot(ray.origin - mCenter) - (mRadius * mRadius);
float discriminant = b * b - 4 * a * c;
if (discriminant > 0) {
float s1 = (- b + sqrtf(discriminant)) / 2 * a;
float s2 = (- b - sqrtf(discriminant)) / 2 * a;
// Tester le chemin le plus court ?
if (s1 > 0) {
if (s1 < s2 && hit.t() > s1) {
hit.setT(s1);
hit.setIntersection(ray.direction * s1);
}
}
if (s2 > 0) {
if (s2 < s1 && hit.t() > s2) {
hit.setT(s2);
hit.setIntersection(ray.direction * s2);
}
}
}
else if (discriminant = 0) {
float s = - b / 2 * a;
if (hit.t() > s) {
hit.setT(s);
hit.setIntersection(ray.direction * s);
}
}
else {
return false;
}
return true;
}