소스 검색

com.jme3.math: remove trailing whitespace

Stephen Gold 3 년 전
부모
커밋
2da5543958

+ 9 - 9
jme3-core/src/main/java/com/jme3/math/Vector2f.java

@@ -402,9 +402,9 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
         product.y = y * scalar;
         return product;
     }
-    
+
     /**
-     * Multiplies component-wise by the specified components and returns the 
+     * Multiplies component-wise by the specified components and returns the
      * product as a new instance. The current instance is unaffected.
      *
      * @param x the scale factor for the X component
@@ -414,9 +414,9 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
     public Vector2f mult(float x, float y) {
         return new Vector2f(this.x * x, this.y * y);
     }
-    
+
     /**
-     * Multiplies component-wise by the specified components and returns the 
+     * Multiplies component-wise by the specified components and returns the
      * (modified) current instance.
      *
      * @param x the scale factor for the X component
@@ -428,7 +428,7 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
         this.y *= y;
         return this;
     }
-    
+
     /**
      * Divides by the scalar argument and returns the quotient as a new
      * instance. The current instance is unaffected.
@@ -452,7 +452,7 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
         y /= scalar;
         return this;
     }
-    
+
     /**
      * Divides component-wise by the specified components and returns the quotient
      * as a new instance. The current instance is unaffected.
@@ -464,9 +464,9 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
     public Vector2f divide(float x, float y) {
         return new Vector2f(this.x / x, this.y / y);
     }
- 
+
     /**
-     * Divides component-wise by the specified components returns the (modified) 
+     * Divides component-wise by the specified components returns the (modified)
      * current instance.
      *
      * @param x the divisor for the X component
@@ -478,7 +478,7 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
         this.y /= y;
         return this;
     }
-        
+
     /**
      * Returns the negative of the vector. The current instance is unaffected.
      *

+ 6 - 6
jme3-core/src/main/java/com/jme3/math/Vector3f.java

@@ -569,9 +569,9 @@ public final class Vector3f implements Savable, Cloneable, java.io.Serializable
         }
         return mult(vec, null);
     }
-    
+
     /**
-     * Multiplies component-wise by the specified components and returns the 
+     * Multiplies component-wise by the specified components and returns the
      * product as a new instance. The current instance is unaffected.
      *
      * @param x the scale factor for the X component
@@ -582,7 +582,7 @@ public final class Vector3f implements Savable, Cloneable, java.io.Serializable
     public Vector3f mult(float x, float y, float z) {
         return new Vector3f(this.x * x, this.y * y, this.z * z);
     }
-    
+
     /**
      * Multiplies component-wise with the specified vector and returns the
      * product in a 3rd vector. If the argument is null, null is returned.
@@ -630,9 +630,9 @@ public final class Vector3f implements Savable, Cloneable, java.io.Serializable
         z *= scalar;
         return this;
     }
-    
+
     /**
-     * Divides component-wise by the specified components returns the (modified) 
+     * Divides component-wise by the specified components returns the (modified)
      * current instance.
      *
      * @param x the divisor for the X component
@@ -670,7 +670,7 @@ public final class Vector3f implements Savable, Cloneable, java.io.Serializable
     public Vector3f divide(float x, float y, float z) {
         return new Vector3f(this.x / x, this.y / y, this.z / z);
     }
-    
+
     /**
      * Divides component-wise by the argument and returns the (modified) current
      * instance.

+ 6 - 6
jme3-core/src/main/java/com/jme3/math/Vector4f.java

@@ -422,9 +422,9 @@ public final class Vector4f implements Savable, Cloneable, java.io.Serializable
         product.w = w * scalar;
         return product;
     }
-    
+
     /**
-     * Multiplies component-wise by the specified components and returns the 
+     * Multiplies component-wise by the specified components and returns the
      * product as a new instance. The current instance is unaffected.
      *
      * @param x the scale factor for the X component
@@ -590,9 +590,9 @@ public final class Vector4f implements Savable, Cloneable, java.io.Serializable
         w /= divisor.w;
         return this;
     }
-    
+
     /**
-     * Divides component-wise by the specified components returns the (modified) 
+     * Divides component-wise by the specified components returns the (modified)
      * current instance.
      *
      * @param x the divisor for the X component
@@ -607,8 +607,8 @@ public final class Vector4f implements Savable, Cloneable, java.io.Serializable
         this.z /= z;
         this.w /= w;
         return this;
-    } 
-   
+    }
+
     /**
      * Divides component-wise by the specified components and returns the quotient
      * as a new instance. The current instance is unaffected.