1 Star 0 Fork 0

mo~si/games101_05

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Object.hpp 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hugh 提交于 2022-02-22 11:32 . 添加项目文件。
#pragma once
#include "Vector.hpp"
#include "global.hpp"
class Object
{
public:
Object()
: materialType(DIFFUSE_AND_GLOSSY)
, ior(1.3)
, Kd(0.8)
, Ks(0.2)
, diffuseColor(0.2)
, specularExponent(25)
{}
virtual ~Object() = default;
virtual bool intersect(const Vector3f&, const Vector3f&, float&, uint32_t&, Vector2f&) const = 0;
virtual void getSurfaceProperties(const Vector3f&, const Vector3f&, const uint32_t&, const Vector2f&, Vector3f&,
Vector2f&) const = 0;
virtual Vector3f evalDiffuseColor(const Vector2f&) const
{
return diffuseColor;
}
// material properties
MaterialType materialType;
float ior;
float Kd, Ks;
Vector3f diffuseColor;
float specularExponent;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mo-si/games101_05.git
git@gitee.com:mo-si/games101_05.git
mo-si
games101_05
games101_05
master

搜索帮助