1 Star 0 Fork 3

kissisgb/libOpenDRIVE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Mesh.h 407 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sebastian Pagel 提交于 2022-02-14 18:55 . change unsigned int -> uint32_t
#pragma once
#include "Math.hpp"
#include <string>
#include <vector>
namespace odr
{
struct Mesh3D
{
Mesh3D() = default;
virtual ~Mesh3D() = default;
void add_mesh(const Mesh3D& other);
std::string get_obj() const;
std::vector<Vec3D> vertices;
std::vector<uint32_t> indices;
std::vector<Vec3D> normals;
std::vector<Vec2D> st_coordinates;
};
} // namespace odr
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kissisgb/libOpenDRIVE.git
git@gitee.com:kissisgb/libOpenDRIVE.git
kissisgb
libOpenDRIVE
libOpenDRIVE
master

搜索帮助