mirror of
https://github.com/clockworkpi/DevTerm.git
synced 2025-12-12 18:28:50 +01:00
16 lines
286 B
C
16 lines
286 B
C
/*
|
|
* ALGO : PROJ. : Volume
|
|
* RESEARCH : File : transform.h
|
|
* : Date : 20100531.0725UTC
|
|
* : Email : mail@algoresearch.net
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
typedef struct{
|
|
float x, y, z;
|
|
int v;
|
|
}VERTEX;
|
|
|
|
void rotate_xy(VERTEX*, VERTEX*, float, float, VERTEX*);
|