inlineboolBounds3::IntersectP(const Ray& ray, const Vector3f& invDir, const std::array<int, 3>& dirIsNeg)const { // invDir: ray direction(x,y,z), invDir=(1.0/x,1.0/y,1.0/z), use this because Multiply is faster that Division // dirIsNeg: ray direction(x,y,z), dirIsNeg=[int(x>0),int(y>0),int(z>0)], use this to simplify your logic // TODO test if ray bound intersects double t_enter = std::numeric_limits<double>::lowest(); double t_exit = std::numeric_limits<double>::max();
//对三对面进行判断 for (int i = 0; i < 3; i++) { auto t_min = (pMin[i] - ray.origin[i]) * invDir[i]; auto t_max = (pMax[i] - ray.origin[i]) * invDir[i]; if (!dirIsNeg[i]) std::swap(t_min, t_max);
inlineboolBounds3::IntersectP(const Ray& ray, const Vector3f& invDir, const std::array<int, 3>& dirIsNeg)const { // invDir: ray direction(x,y,z), invDir=(1.0/x,1.0/y,1.0/z), use this because Multiply is faster that Division // dirIsNeg: ray direction(x,y,z), dirIsNeg=[int(x>0),int(y>0),int(z>0)], use this to simplify your logic // TODO test if ray bound intersects double t_enter = std::numeric_limits<double>::lowest(); double t_exit = std::numeric_limits<double>::max();
auto x_min = (pMin.x - ray.origin.x) * invDir[0]; auto x_max = (pMax.x - ray.origin.x) * invDir[0]; if (!dirIsNeg[0]) std::swap(x_min, x_max);
auto y_min = (pMin.y - ray.origin.y) * invDir[1]; auto y_max = (pMax.y - ray.origin.y) * invDir[1]; if (!dirIsNeg[1]) std::swap(y_min, y_max);
auto z_min = (pMin.z - ray.origin.z) * invDir[2]; auto z_max = (pMax.z - ray.origin.z) * invDir[2]; if (!dirIsNeg[2]) std::swap(z_min, z_max);