X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Frenderer%2Fraster%2Ftexture%2FTexture.java;fp=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Frenderer%2Fraster%2Ftexture%2FTexture.java;h=70a6107714791ef1d340faa801711b440a70e938;hp=6009bb8025d4409fe4f34b593998261ee2c6031c;hb=a3ff3683bd0a025061667b26b6fcf56fe20f0afc;hpb=3f589bbc56ebfb1bd35b538b8a77d4019396b5aa diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/texture/Texture.java b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/texture/Texture.java index 6009bb8..70a6107 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/texture/Texture.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/texture/Texture.java @@ -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) {