Covellite++  Version: 2.3.0 Revision: ??? Platform: x64 Build: 23:13 04.01.2025
Кроссплатформенный фреймворк для разработки приложений на С++
Загрузка...
Поиск...
Не найдено
Vertex.hpp
1
2#pragma once
3#include <cstdint>
4
5namespace covellite
6{
7
8namespace api
9{
10
33class Vertex final
34{
35public:
36 float px, py, pz, pw;
37 float tu, tv;
38 float ex, ey, ez, ew;
39};
40
41} // namespace api
42
43} // namespace covellite
Класс входит в проект Covellite.Api Класс формата вертексного буфера.
Definition Vertex.hpp:34
float ew
Extra parameters (color, normal, etc)
Definition Vertex.hpp:38
float tv
Texture coords.
Definition Vertex.hpp:37
float pw
Position.
Definition Vertex.hpp:36