1 Star 0 Fork 0

mo~si/games101_07

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Intersection.hpp 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hugh 提交于 2022-02-22 11:24 . 添加项目文件。
//
// Created by LEI XU on 5/16/19.
//
#ifndef RAYTRACING_INTERSECTION_H
#define RAYTRACING_INTERSECTION_H
#include "Vector.hpp"
#include "Material.hpp"
class Object;
class Sphere;
struct Intersection
{
Intersection(){
happened=false;
coords=Vector3f();
normal=Vector3f();
distance= std::numeric_limits<double>::max();
obj =nullptr;
m=nullptr;
}
bool happened;
Vector3f coords;
Vector3f tcoords;
Vector3f normal;
Vector3f emit;
double distance;
Object* obj;
Material* m;
};
#endif //RAYTRACING_INTERSECTION_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mo-si/games101_07.git
git@gitee.com:mo-si/games101_07.git
mo-si
games101_07
games101_07
master

搜索帮助