Ruby Xia
Ruby Xia
The issue is related to the reflectance function in the dielectric class (material.h, line 86). Schlick’s approximation for Fresnel reflection is given by: $$ R(\theta_i) = R_0 + (1 -...
In the code fragment from `Listing 79: [main.cc] Scene with hollow glass sphere` (file `books/RayTracingInOneWeekend.html`, line 3647), the `fuzz` argument for `material_right` should be set to $1.0$ instead of $0.0$,...
--- In the current context, $\textrm{Color}_i$ represents the result traced from the light side via `ray_color(scattered, ...)` , meaning the subscript $i$ denotes **the incoming direction toward the surface from...
问题描述在 #59 问题段落修复为 ```javascript for (const response of v) { const js = await response.json() js.data.medias.forEach(m => BVidPromises.push(fetchVideoInfo(m.bvid))) } ``` 修复后测试正常。`media_id=3349906669` 的收藏夹共142个视频,修复后缺失的最后2个视频正确加入列表,如图所示  p.s 顺手修正了以下几处'Delete'的错误拼写
### 问题描述 使用发布版azusa-player进行搜索b站收藏夹时,总会缺少最后一页的视频。 具体而言,对于拥有 `x` 个视频的收藏夹,将会缺失最后的 `x % 20` 个视频(粒度为bvid) ### 原因分析 定位到问题函数为 `src/utils/Data.js` 中的 `fetchFavList` 函数如下 ```javascript export const fetchFavList = async (mid) => { // ... let videoInfos...