BSPParser
Simple and modern library for parsing the Valve BSP format
Loading...
Searching...
No Matches
calculate-uvs.hpp
1#pragma once
2
3#include "../structs/common.hpp"
4#include "../structs/textures.hpp"
5
6namespace BspParser::Internal {
7 Structs::Vector2 calculateUvs(
8 const Structs::Vector& position, const Structs::TexInfo& textureInfo, const Structs::TexData& textureData
9 );
10}