mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-04 02:01:51 +00:00
chore: update formatting due to updated clang-format version
This commit is contained in:
@ -28,7 +28,7 @@ namespace tangent_space
|
||||
|
||||
void SetVec3(void* dest, const size_t index, const size_t stride, const tvec3& data)
|
||||
{
|
||||
auto* out = reinterpret_cast<float(*)[3]>(static_cast<char*>(dest) + stride * index);
|
||||
auto* out = reinterpret_cast<float (*)[3]>(static_cast<char*>(dest) + stride * index);
|
||||
(*out)[0] = data[0];
|
||||
(*out)[1] = data[1];
|
||||
(*out)[2] = data[2];
|
||||
|
Reference in New Issue
Block a user