Ver Fonte

Math / inverseLerp: Removed a very visible extra space.

clenhof há 1 ano atrás
pai
commit
5a125e8fd9
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      hxd/Math.hx

+ 1 - 1
hxd/Math.hx

@@ -138,7 +138,7 @@ class Math {
 	/**
 	/**
 		Returns a value between 0 and 1, that determines where val lies between a and b.
 		Returns a value between 0 and 1, that determines where val lies between a and b.
 	 */
 	 */
-	 public inline static function inverseLerp(a:Float, b:Float, val:Float) {
+	public inline static function inverseLerp(a:Float, b:Float, val:Float) {
 		return (val - a) / (b - a);
 		return (val - a) / (b - a);
 	}
 	}