annotate TaskManager/Test/test_render/sys.h @ 212:c020ccff4627 draft

fix
author gongo@localhost.localdomain
date Sat, 31 Jan 2009 08:54:22 +0900
parents f5784443dd50
children 335ea3665fcd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
1 void noMoreMemory();
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
2 void get_matrix(float *matrix, float *rxyz, float *txyz, float *stack);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
3 void rotate_x(float *xyz, float r);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
4 void rotate_y(float *xyz, float r);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
5 void rotate_z(float *xyz, float r);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
6 //void rotate(float *xyz, float *matrix, float *rxyz, float *txyz, float *stack[]);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
7 void rotate(float *xyz, float *matrix);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
8 void translate(float *xyz, float x, float y, float z);
206
f5784443dd50 add Camera
gongo@gendarme.cr.ie.u-ryukyu.ac.jp
parents: 109
diff changeset
9 void matrix4x4(float *, float *, float *);
212
gongo@localhost.localdomain
parents: 206
diff changeset
10
gongo@localhost.localdomain
parents: 206
diff changeset
11 void normalize(float *v0, float *v1);
gongo@localhost.localdomain
parents: 206
diff changeset
12 void subVector(float *v0, float *v1, float *v2);
gongo@localhost.localdomain
parents: 206
diff changeset
13 void outerProduct(float *v0, float *v1, float *v2);
gongo@localhost.localdomain
parents: 206
diff changeset
14 float innerProduct(float *v0, float *v1);