mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 12:53:37 +00:00
8 lines
168 B
C++
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);
|
|
}
|