10 lines
114 B
C++
10 lines
114 B
C++
#include "fabricate/texture_coordinate.h"
|
|
|
|
texture_coordinate_t(
|
|
float u_p,
|
|
float v_p
|
|
) {
|
|
u = u_p;
|
|
v = v_p;
|
|
}
|