BSPParser
Simple and modern library for parsing the Valve BSP format
Loading...
Searching...
No Matches
get-vertex-position.hpp
1#pragma once
2
3#include "../structs/common.hpp"
4#include "../structs/geometry.hpp"
5#include <span>
6
7namespace BspParser::Internal {
8 const Structs::Vector& getVertexPosition(
9 std::span<const Structs::Edge> edges, std::span<const Structs::Vector> vertices, int32_t surfaceEdge
10 );
11}