14 lines
186 B
C
14 lines
186 B
C
|
//
|
||
|
// mVertex.c
|
||
|
// game
|
||
|
//
|
||
|
// Created by maride on 02.04.16.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#include "mVertex.h"
|
||
|
|
||
|
void mVertex3fv(tVector3 vertex) {
|
||
|
tVector3 v = *vertex;
|
||
|
glVertex3f(v.x, v.y, v.z);
|
||
|
}
|