blob: df203ed3b6c58b87129945043711800422848a82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This file is part of the 64k demo project.
// It defines utility structures and functions for mesh processing.
#pragma once
#include "util/mini_math.h"
// Vertex structure for meshes
struct MeshVertex {
vec3 position;
vec3 normal;
vec2 uv;
};
|