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