Skip to main content

Vertex.ixx File

Vertex description and utilities for rendering. More...

Included Headers

#include <helios.math.types>

Namespaces Index

namespacehelios
namespacerendering

Graphics rendering infrastructure. More...

Classes Index

structVertex

Represents a standard vertex with position, normal, and texture coordinates. More...

Description

Vertex description and utilities for rendering.

File Listing

The file content with the documentation metadata removed is:

1/**
2 * @file Vertex.ixx
3 * @brief Vertex description and utilities for rendering.
4 */
5module;
6
7export module helios.rendering.Vertex;
8
9import helios.math.types;
10
11export namespace helios::rendering {
12
13 /**
14 * @brief Represents a standard vertex with position, normal,
15 * and texture coordinates.
16 *
17 * @see [Vri20, pp. 160]
18 */
19 struct Vertex {
21 math::vec3f normal = {0.0f, 0.0f, 0.0f};
22 math::vec2f texCoords = {0.0f, 0.0f};
23 };
24}

Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.15.0.