What & How & Why

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录前一修订版
后一修订版
前一修订版
cg:books:rt_one_wk:book_1 [2023/11/27 08:15] – [数学原理以及推导] codingharecg:books:rt_one_wk:book_1 [2024/11/20 05:44] (当前版本) – [材质的抽象类] codinghare
行 97: 行 97:
 此处颜色的计算是根据当前射线在 $y$ 上的值来作为变量,使用**线性插值**(//Linear interpolation//)的方法来计算背景颜色。线性插值(也被成为 //lerp//)计算颜色的方法是指提供两个基础色,然后提供一个标准化的变量 (处于 $[0,1]$) 来控制颜色。颜色会在这俩个基础色中以线性渐变的形式表现出来。线性插值的公式: 此处颜色的计算是根据当前射线在 $y$ 上的值来作为变量,使用**线性插值**(//Linear interpolation//)的方法来计算背景颜色。线性插值(也被成为 //lerp//)计算颜色的方法是指提供两个基础色,然后提供一个标准化的变量 (处于 $[0,1]$) 来控制颜色。颜色会在这俩个基础色中以线性渐变的形式表现出来。线性插值的公式:
 \\  \\ 
->$$blendedValue=(1−t)⋅startValue+t⋅endValue$$+>$$\texttt{blendedValue=(1−t)⋅startValue+t⋅endValue}$$
 \\  \\ 
 $t$ 值此处与 $y$ 相关。由于我们的画布在 $y$ 上的范围是 $[-1,1]$,因此对 $t$ 也做了标准化处理: $t$ 值此处与 $y$ 相关。由于我们的画布在 $y$ 上的范围是 $[-1,1]$,因此对 $t$ 也做了标准化处理:
行 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} \cdot}(b,b)}_\text{a} +t*\underbrace{2*{\color{Peach} \cdot} (b,(A-C))}_\text{b} +\+\Longrightarrow &t^2 \cdot \underbrace{{\color{Peach}}dot (b,b)}_\text{a} +t \cdot \underbrace{2 \cdot {\color{Peach} } (b,(A-C))}_\text{b} +\
 \underbrace{{\color{Peach} \cdot}((A-C),(A-C))-r^2}_\text{c} = 0 \underbrace{{\color{Peach} \cdot}((A-C),(A-C))-r^2}_\text{c} = 0
 \end{align*} \end{align*}
行 183: 行 183:
 </code> </code>
 而 ''t'' 的返回值使用的是判别式根中为**负**的计算结果。这个结果将返回离摄像机最近的交叉点: 而 ''t'' 的返回值使用的是判别式根中为**负**的计算结果。这个结果将返回离摄像机最近的交叉点:
->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.//
 除此之外, 如果 ''t'' 为负,则射线的方向与圆所在的方向相反,因此不可能有交集。这种情况下我们不会进行法线的计算: 除此之外, 如果 ''t'' 为负,则射线的方向与圆所在的方向相反,因此不可能有交集。这种情况下我们不会进行法线的计算:
 <code cpp> <code cpp>
行 271: 行 271:
   * vector   * vector
 数据对象为: 数据对象为:
-  * ''shared_ptr<vector<hittable>>''+  * ''shared_ptr<vector<hittable> > ''
 主要的操作函数有: 主要的操作函数有:
   * 添加函数 ''add'',通过 ''vector::push_back()'' 实现   * 添加函数 ''add'',通过 ''vector::push_back()'' 实现
行 342: 行 342:
 ===生成像素的采样点=== ===生成像素的采样点===
 整个过程: 整个过程:
-\\ <html><div align="center"> <img src="/_media/cg/books/rt_one_wk/aa.svg width="500"> </div> </html>+\\ {{ :cg:books:rt_one_wk:aa.svg?500 |}}
 ==将 camera 改变为 class 对象== ==将 camera 改变为 class 对象==
 直接将 ''main.cc'' 中的代码抄过去即可。主要的数据成员有: 直接将 ''main.cc'' 中的代码抄过去即可。主要的数据成员有:
行 571: 行 571:
 </code> </code>
 上面的 ''sactter()'' 函数会接收射线,根据衰减值返回射线,并将相关的信息存储到 ''hit_record'' 对象中: 上面的 ''sactter()'' 函数会接收射线,根据衰减值返回射线,并将相关的信息存储到 ''hit_record'' 对象中:
-\\ \\ <html><div align="center"> <img src="/_media/cg/books/rt_one_wk/mat_trans.svg width="600"> </div> </html>+\\ \\ {{ :cg:books:rt_one_wk:mat_trans.svg?600 |}}
 ===描述射线与对象相交的数据结构=== ===描述射线与对象相交的数据结构===
 本课程中,射线与表面相交的相关信息都存储于 ''hit_record'' 对象中。由于光线的反射与衰减是通过材质来决定的,因此对应**表面的材质信息**也需要存储到该对象中,供之后的 ''ray_color()'' 着色使用。材质信息通过智能指针来管理: 本课程中,射线与表面相交的相关信息都存储于 ''hit_record'' 对象中。由于光线的反射与衰减是通过材质来决定的,因此对应**表面的材质信息**也需要存储到该对象中,供之后的 ''ray_color()'' 着色使用。材质信息通过智能指针来管理: