mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-14 00:15:00 +00:00
16 lines
273 B
C++
16 lines
273 B
C++
#pragma once
|
|
|
|
#include "XModel/XModelCommon.h"
|
|
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
class TangentData
|
|
{
|
|
public:
|
|
void CreateTangentData(const XModelCommon& common);
|
|
|
|
std::vector<std::array<float, 3>> m_tangents;
|
|
std::vector<std::array<float, 3>> m_binormals;
|
|
};
|