4jcraft/Minecraft.Client/Rendering/Vertex.cpp
2026-03-28 12:53:07 -05:00

6 lines
128 B
C++

#include "Vertex.h"
Vertex Vertex::remap(const float u, const float v) const {
return Vertex(pos.x, pos.y, pos.z, u, v);
}