Euphoria
geom.h
Go to the documentation of this file.
1#pragma once
2
3namespace eu::core
4{
5
19
21struct Face
22{
26};
27
29struct Geom
30{
31 std::vector<Vertex> vertices;
32 std::vector<Face> faces;
33};
34
39} // namespace eu::core
std::uint32_t u32
Definition ints.h:14
A triangulated face in a Geom.
Definition geom.h:22
vertices and triangles
Definition geom.h:30
std::vector< Vertex > vertices
Definition geom.h:31
std::vector< Face > faces
Definition geom.h:32
A single vertex in a Geom.
Definition geom.h:13
v3 color
in linear color space
Definition geom.h:17
a 2d vector
Definition vec2.h:17
a 3d vector
Definition vec3.h:27