1 Star 0 Fork 0

mo~si/games101_03

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Triangle.cpp 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
Hugh 提交于 2022-02-22 16:20 . 添加项目文件。
//
// Created by LEI XU on 4/11/19.
//
#include "Triangle.hpp"
#include <algorithm>
#include <array>
Triangle::Triangle() {
v[0] << 0,0,0,1;
v[1] << 0,0,0,1;
v[2] << 0,0,0,1;
color[0] << 0.0, 0.0, 0.0;
color[1] << 0.0, 0.0, 0.0;
color[2] << 0.0, 0.0, 0.0;
tex_coords[0] << 0.0, 0.0;
tex_coords[1] << 0.0, 0.0;
tex_coords[2] << 0.0, 0.0;
}
void Triangle::setVertex(int ind, Vector4f ver){
v[ind] = ver;
}
void Triangle::setNormal(int ind, Vector3f n){
normal[ind] = n;
}
void Triangle::setColor(int ind, float r, float g, float b) {
if((r<0.0) || (r>255.) ||
(g<0.0) || (g>255.) ||
(b<0.0) || (b>255.)) {
fprintf(stderr, "ERROR! Invalid color values");
fflush(stderr);
exit(-1);
}
color[ind] = Vector3f((float)r/255.,(float)g/255.,(float)b/255.);
return;
}
void Triangle::setTexCoord(int ind, Vector2f uv) {
tex_coords[ind] = uv;
}
std::array<Vector2f, 3> Triangle::toVector2() const
{
std::array<Vector2f, 3> res;
std::transform(std::begin(v), std::end(v), res.begin(), [](auto& vec) { return Vector2f(vec.x(), vec.y()); });
return res;
}
std::array<Vector4f, 3> Triangle::toVector4() const
{
std::array<Vector4f, 3> res;
std::transform(std::begin(v), std::end(v), res.begin(), [](auto& vec) { return Vector4f(vec.x(), vec.y(),vec.z(),1.f); });
return res;
}
void Triangle::setNormals(const std::array<Vector3f, 3>& normals)
{
normal[0] = normals[0];
normal[1] = normals[1];
normal[2] = normals[2];
}
void Triangle::setColors(const std::array<Vector3f, 3>& colors)
{
auto first_color = colors[0];
setColor(0, colors[0][0], colors[0][1], colors[0][2]);
setColor(1, colors[1][0], colors[1][1], colors[1][2]);
setColor(2, colors[2][0], colors[2][1], colors[2][2]);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mo-si/games101_03.git
git@gitee.com:mo-si/games101_03.git
mo-si
games101_03
games101_03
master

搜索帮助