ソースを参照

Removed trailing spaces.

EthanHermsey 5 年 前
コミット
213ab2906e

+ 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;
-		
+
 	}
 
 } );