4jcraft/targets/minecraft/client/model/Vertex.cpp
2026-04-01 18:02:06 -05:00

8 lines
168 B
C++

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