From 43ebbe01576991530c47d6f70d6b37690422f847 Mon Sep 17 00:00:00 2001 From: Luc Girod Date: Wed, 16 Apr 2014 17:26:26 +0200 Subject: [PATCH] correct a comment --- sweet_math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sweet_math.h b/sweet_math.h index a12a838..97b3ff6 100644 --- a/sweet_math.h +++ b/sweet_math.h @@ -149,14 +149,14 @@ vec4 sweet_vector_crossh (vec4 vector1, vec4 vector2); /** @param vector1 as vec3 */ /** @param vector2 as vec3 */ /** @param vector3 as vec3 */ -/** @return v1 x v2 . v3 as float */ +/** @return v1 . (v2 x v3) as float */ float sweet_vector_triple_product (vec3 vector1, vec3 vector2, vec3 vector3); /** TripleProduct */ /** @param vector1 as vec3 */ /** @param vector2 as vec3 */ /** @param vector3 as vec3 */ -/** @return v1 x v2 . v3 as float */ +/** @return v1 . (v2 x v3) as float */ float sweet_vector_triple_producth (vec4 vector1, vec4 vector2, vec4 vector3); /** Normalize */