v0.3.0 API Reference
PrimitiveTopology.h
1//
2// PrimitiveTopology.h
3// avara3d
4//
5// Created by Morgan Davis on 1/7/2026.
6// Copyright © 2026 Morgan K Davis. All rights reserved.
7//
8
9#ifndef AVARA3D_MESH_PRIMITIVETOPOLOGY_H
10#define AVARA3D_MESH_PRIMITIVETOPOLOGY_H
11
12#include <cstdint>
13
14namespace a3d {
15
16enum class PrimitiveTopology : uint8_t {
17 Triangles,
18 Lines,
19 Points,
20};
21
22} // namespace a3d
23
24#endif // AVARA3D_MESH_PRIMITIVETOPOLOGY_H