本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版后一修订版 | 前一修订版 | ||
cg:books:rt_one_wk:book_1 [2023/11/27 08:15] – [数学原理以及推导] codinghare | cg:books:rt_one_wk:book_1 [2024/11/20 05:44] (当前版本) – [材质的抽象类] codinghare | ||
---|---|---|---|
行 97: | 行 97: | ||
此处颜色的计算是根据当前射线在 $y$ 上的值来作为变量,使用**线性插值**(// | 此处颜色的计算是根据当前射线在 $y$ 上的值来作为变量,使用**线性插值**(// | ||
\\ | \\ | ||
- | > | + | >$$\texttt{blendedValue=(1−t)⋅startValue+t⋅endValue}$$ |
\\ | \\ | ||
$t$ 值此处与 $y$ 相关。由于我们的画布在 $y$ 上的范围是 $[-1, | $t$ 值此处与 $y$ 相关。由于我们的画布在 $y$ 上的范围是 $[-1, | ||
行 136: | 行 136: | ||
&dot((A + tb -C), (A + tb -C)) = r^2 \newline | &dot((A + tb -C), (A + tb -C)) = r^2 \newline | ||
\Longrightarrow &dot(tb + {\color{Red}(A-C) }), (tb + {\color{Red}(A-C) }) = r^2 \newline | \Longrightarrow &dot(tb + {\color{Red}(A-C) }), (tb + {\color{Red}(A-C) }) = r^2 \newline | ||
- | \Longrightarrow &t^2*\underbrace{{\color{Peach} | + | \Longrightarrow & |
\underbrace{{\color{Peach} \cdot}((A-C), | \underbrace{{\color{Peach} \cdot}((A-C), | ||
\end{align*} | \end{align*} | ||
行 183: | 行 183: | ||
</ | </ | ||
而 '' | 而 '' | ||
- | >To correctly find the closest intersection in the interval [t 0 , t 1 ], there are three cases: **if the smaller of the two solutions is in the interval, it is the first hit**; otherwise, if the larger solution is in the interval, it is the first hit; otherwise, there is no hit. | + | >//To correctly find the closest intersection in the interval [t 0 , t 1 ], there are three cases: **if the smaller of the two solutions is in the interval, it is the first hit**; otherwise, if the larger solution is in the interval, it is the first hit; otherwise, there is no hit.// |
除此之外, | 除此之外, | ||
<code cpp> | <code cpp> | ||
行 271: | 行 271: | ||
* vector | * vector | ||
数据对象为: | 数据对象为: | ||
- | * '' | + | * '' |
主要的操作函数有: | 主要的操作函数有: | ||
* 添加函数 '' | * 添加函数 '' | ||
行 342: | 行 342: | ||
===生成像素的采样点=== | ===生成像素的采样点=== | ||
整个过程: | 整个过程: | ||
- | \\ < | + | \\ {{ :cg:books:rt_one_wk:aa.svg?500 |}} |
==将 camera 改变为 class 对象== | ==将 camera 改变为 class 对象== | ||
直接将 '' | 直接将 '' | ||
行 571: | 行 571: | ||
</ | </ | ||
上面的 '' | 上面的 '' | ||
- | \\ \\ < | + | \\ \\ {{ :cg:books:rt_one_wk:mat_trans.svg?600 |}} |
===描述射线与对象相交的数据结构=== | ===描述射线与对象相交的数据结构=== | ||
本课程中,射线与表面相交的相关信息都存储于 '' | 本课程中,射线与表面相交的相关信息都存储于 '' |