1 Star 0 Fork 0

wsw/Code

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
structure.hpp 523 Bytes
一键复制 编辑 原始数据 按行查看 历史
wsw 提交于 2024-01-03 23:35 . gl2
#ifndef STRUCTURE_HPP
#define STRUCTURE_HPP
#include <iostream>
#include<vector>
// 顶点
struct P3{
double P[3];
};
// 法向量
struct N{
double N[3];
};
// 纹理坐标
struct T{
double T[2];
};
// 面
struct F{
int v[3]; // 顶点索引
int t[3]; // 纹理索引
int n[3]; // 法向量索
F(int v[], int t[], int n[]){
for (int i = 0; i < 3; i++)
{
this->v[i] = v[i];
this->t[i] = t[i];
this->n[i] = n[i];
}
}
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wswsw123/code.git
git@gitee.com:wswsw123/code.git
wswsw123
code
Code
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385