Преглед на файлове

Removed trailing spaces.

EthanHermsey преди 5 години
родител
ревизия
213ab2906e
променени са 6 файла, в които са добавени 8 реда и са изтрити 8 реда
  1. 1 1
      docs/api/en/math/Vector2.html
  2. 1 1
      src/math/Vector2.js
  3. 1 1
      src/math/Vector3.d.ts
  4. 2 2
      src/math/Vector3.js
  5. 1 1
      src/math/Vector4.d.ts
  6. 2 2
      src/math/Vector4.js

+ 1 - 1
docs/api/en/math/Vector2.html

@@ -331,7 +331,7 @@
 
 		Returns an array [x, y], or copies x and y into the provided [page:Array array].
 		</p>
-		
+
 		<h3>[method:this random]()</h3>
 		<p>
 			Sets the x and y components of the vector to a random value [0-1].

+ 1 - 1
src/math/Vector2.js

@@ -483,7 +483,7 @@ Object.assign( Vector2.prototype, {
 		return this;
 
 	},
-	
+
 	random: function () {
 
 		this.x = Math.random();

+ 1 - 1
src/math/Vector3.d.ts

@@ -286,7 +286,7 @@ export class Vector3 implements Vector {
 		index: number,
 		offset?: number
 	): this;
-	
+
 	/**
 	 * Sets this vector's x, y and z from Math.random
 	 */

+ 2 - 2
src/math/Vector3.js

@@ -713,7 +713,7 @@ Object.assign( Vector3.prototype, {
 		return this;
 
 	},
-	
+
 	random: function () {
 
 		this.x = Math.random();
@@ -721,7 +721,7 @@ Object.assign( Vector3.prototype, {
 		this.z = Math.random();
 
 		return this;
-		
+
 	}
 
 } );

+ 1 - 1
src/math/Vector4.d.ts

@@ -209,7 +209,7 @@ export class Vector4 implements Vector {
 		index: number,
 		offset?: number
 	): this;
-	
+
 	/**
 	 * Sets this vector's x, y, z and w from Math.random
 	 */

+ 2 - 2
src/math/Vector4.js

@@ -647,7 +647,7 @@ Object.assign( Vector4.prototype, {
 		return this;
 
 	},
-	
+
 	random: function () {
 
 		this.x = Math.random();
@@ -656,7 +656,7 @@ Object.assign( Vector4.prototype, {
 		this.w = Math.random();
 
 		return this;
-		
+
 	}
 
 } );