2014-02-16 10:41:12 +00:00
|
|
|
#ifndef __VECTOR_H_INCLUDED__
|
|
|
|
#define __VECTOR_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
void vectorSet(float *target, float x, float y, float z);
|
|
|
|
void vectorCopy(float *target, float *source);
|
|
|
|
void vectorAdd(float *target, float *source1, float *source2);
|
|
|
|
void vectorAdd(float *target, float *source);
|
|
|
|
void vectorSub(float *target, float *source);
|
|
|
|
void vectorSub(float *target, float *source1, float *source2);
|
|
|
|
void vectorNegative(float *target, float *source);
|
|
|
|
void vectorNegative(float *target);
|
|
|
|
void vectorScale(float *target, float *source, float scale);
|
|
|
|
void vectorScale(float *target, float scale);
|
|
|
|
float vectorDot(float *source1, float *source2);
|
|
|
|
float vectorNormalizedDot(float *source1, float *source2);
|
|
|
|
float vectorLength(float *source);
|
|
|
|
void vectorCross(float *target, float *source1, float *source2);
|
|
|
|
void vectorNormalize(float *target, float *source);
|
|
|
|
void vectorNormalize(float *target);
|
|
|
|
void vectorReflect(float *target, float *source, float *normal);
|
|
|
|
bool vectorIsZero(float *vector);
|
|
|
|
void vectorSaturate(float *target, float *source, float min, float max);
|
|
|
|
void vectorSaturate(float *vector, float min, float max);
|
|
|
|
|
|
|
|
//Projects vector source1 onto vector source2
|
|
|
|
void vectorProject(float *target, float *source1, float *source2);
|
|
|
|
|
|
|
|
void vectorMatrixMultiply(float *target, float *source, float *matrix);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void matrixSet(float *matrix,
|
2014-02-16 13:34:15 +00:00
|
|
|
float x1, float y1, float z1,
|
|
|
|
float x2, float y2, float z2,
|
|
|
|
float x3, float y3, float z3);
|
2014-02-16 10:41:12 +00:00
|
|
|
void matrixSet(float *matrix, float *r1, float *r2, float *r3);
|
|
|
|
void matrixCopy(float *target, float *source);
|
|
|
|
void matrixIdentity(float *matrix);
|
|
|
|
void matrixAdd(float *target, float *source1, float *source2);
|
|
|
|
void matrixAdd(float *target, float *source);
|
|
|
|
void matrixMultiply(float *target, float *source1, float *source2);
|
|
|
|
//void matrixMultiply(float *target, float *source);
|
|
|
|
void matrixRotate(float *matrix, float *vector);
|
|
|
|
void matrixCreateRotation(float *matrix, float *vector);
|
|
|
|
void matrixTranspose(float *target, float *source);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|