From 96f520ff6d085536205feb1f943974e354577df4 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Tue, 25 Mar 2014 12:40:35 +0100 Subject: Road to raylib 1.1 - Testing rlgl --- src/raymath.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/raymath.h') diff --git a/src/raymath.h b/src/raymath.h index 49cceafb..69a6a582 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -91,6 +91,8 @@ void VectorNormalize(Vector3 *v); // Normalize provided ve float VectorDistance(Vector3 v1, Vector3 v2); // Calculate distance between two points Vector3 VectorLerp(Vector3 v1, Vector3 v2, float amount); // Calculate linear interpolation between two vectors Vector3 VectorReflect(Vector3 vector, Vector3 normal); // Calculate reflected vector to normal +void VectorTransform(Vector3 *v, Matrix mat); // Transforms a Vector3 with a given Matrix +Vector3 VectorZero(); // Return a Vector3 init to zero //------------------------------------------------------------------------------------ // Functions Declaration to work with Matrix -- cgit v1.2.3