mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-26 12:06:08 +00:00
6 lines
128 B
C++
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);
|
|
}
|