万户千门气郁葱,汉家城阙画图中 #refplus, #refplus li{ padding:0; margin:0; list-style:none; }; document.querySelectorAll(".refplus-num").forEach((ref) => { let 2021-12-10 相册 #北京
在 Windows 中将 VSCode 添加至右键菜单 Windows 上面安装 Visual Studio Code 后,将Open with Code添加到鼠标右键菜单里 2021-12-09 Tools #vscode #右键菜单 #注册表
Path Tracing 在本次实验中,只需要修改这一个函数: castRay(const Ray ray, int depth)in Scene.cpp:在其中实现 Path Tracing 算法 可能用到的函数有: intersect(const Ray ray)in Scene.cpp:求一条光线与场景的交点 sampleLight(Intersection pos, float pdf) in Scene.c 2021-12-02 图形学 #Graphics #GAMES
Accelerate Ray Tracing 发射光线和与光线三角形求交 发射光线 与 Whitted Style Ray Tracing 中的 Render 函数相同 12float x = (2 * (i + 0.5) / (float)scene.width - 1) * imageAspectRatio * scale;float y = (1 - 2 * (j + 0.5) / (float)scene.height) * sc 2021-11-24 图形学 #Graphics #GAMES