Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / math / Transform.java
index f7f64db..85a2dda 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Sixth 3D engine. Author: Svjatoslav Agejenko. 
+ * Sixth 3D engine. Author: Svjatoslav Agejenko.
  * This project is released under Creative Commons Zero (CC0) license.
  */
 package eu.svjatoslav.sixth.e3d.math;
@@ -23,8 +23,7 @@ public class Transform implements Cloneable {
     /**
      * Creates a new transform with the specified translation.
      *
-     * @param translation
-     *            the translation
+     * @param translation the translation
      */
     public Transform(final Point3D translation) {
         this.translation = translation;
@@ -34,12 +33,9 @@ public class Transform implements Cloneable {
     /**
      * Creates a new transform with the specified translation and orientation.
      *
-     * @param translation
-     *            the translation
-     * @param angleXZ
-     *            the angle around the XZ axis
-     * @param angleYZ
-     *            the angle around the YZ axis
+     * @param translation the translation
+     * @param angleXZ     the angle around the XZ axis
+     * @param angleYZ     the angle around the YZ axis
      */
     public Transform(final Point3D translation, final double angleXZ,
                      final double angleYZ) {
@@ -51,10 +47,8 @@ public class Transform implements Cloneable {
     /**
      * Creates a new transform with the specified translation and orientation.
      *
-     * @param translation
-     *            the translation
-     * @param orientation
-     *            the orientation
+     * @param translation the translation
+     * @param orientation the orientation
      */
     public Transform(final Point3D translation, final Orientation orientation) {
         this.translation = translation;