Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / raster / texture / Texture.java
index 6009bb8..70a6107 100644 (file)
@@ -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.renderer.raster.texture;
@@ -113,6 +113,7 @@ public class Texture {
 
     /**
      * Returns the bitmap that should be used for rendering at the given zoom
+     *
      * @param scaleFactor The upscale factor
      * @return The bitmap
      */
@@ -133,6 +134,7 @@ public class Texture {
 
     /**
      * Returns the bitmap that should be used for rendering at the given zoom
+     *
      * @param zoomLevel The zoom level
      * @return The bitmap
      */
@@ -165,6 +167,7 @@ public class Texture {
 
     /**
      * Upscales the given bitmap by a factor of 2
+     *
      * @param originalBitmap The bitmap to upscale
      * @return The upscaled bitmap
      */
@@ -216,9 +219,10 @@ public class Texture {
 
         /**
          * Accumulates the color values of the given pixel
+         *
          * @param bitmap The bitmap
-         * @param x The x coordinate of the pixel
-         * @param y The y coordinate of the pixel
+         * @param x      The x coordinate of the pixel
+         * @param y      The y coordinate of the pixel
          */
         public void accumulate(final TextureBitmap bitmap, final int x,
                                final int y) {
@@ -251,9 +255,10 @@ public class Texture {
 
         /**
          * Stores the accumulated color values in the given bitmap
+         *
          * @param bitmap The bitmap
-         * @param x The x coordinate of the pixel
-         * @param y The y coordinate of the pixel
+         * @param x      The x coordinate of the pixel
+         * @param y      The y coordinate of the pixel
          */
         public void storeResult(final TextureBitmap bitmap, final int x,
                                 final int y) {