12 lines
122 B
C++
12 lines
122 B
C++
#include "fabricate/vertex.h"
|
|
|
|
vertex_t::vertex_t(
|
|
float x_p,
|
|
float y_p,
|
|
float z_p
|
|
) {
|
|
x = x_p;
|
|
y = y_p;
|
|
z = z_p;
|
|
}
|