X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Frenderer%2Fraster%2Fshapes%2Fbasic%2FForwardOrientedTexture.java;h=2a312cdfb3abb3d6a4c9f8b58229c2485978d29b;hb=6b39de1e9e80433b78ae731845551e742718d613;hp=448774b5650c8b825183ea013e1c2c73dded51c0;hpb=b1e8d7bd8c9d0905e9fe3c46fc84a11779b95982;p=sixth-3d.git diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/shapes/basic/ForwardOrientedTexture.java b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/shapes/basic/ForwardOrientedTexture.java index 448774b..2a312cd 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/shapes/basic/ForwardOrientedTexture.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/shapes/basic/ForwardOrientedTexture.java @@ -1,5 +1,5 @@ /* - * Sixth 3D engine. Copyright ©2012-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * Sixth 3D engine. Copyright ©2012-2020, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu * * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General Public License @@ -18,8 +18,8 @@ import eu.svjatoslav.sixth.e3d.renderer.raster.texture.TextureBitmap; public class ForwardOrientedTexture extends AbstractCoordinateShape { - public static final double SIZE_MULTIPLIER = 0.005; - public Texture texture; + private static final double SIZE_MULTIPLIER = 0.005; + public final Texture texture; private double scale; public ForwardOrientedTexture(final Point3D point, final double scale, @@ -78,7 +78,7 @@ public class ForwardOrientedTexture extends AbstractCoordinateShape { if (xEnd > targetRenderingArea.width) xEnd = targetRenderingArea.width; - final byte[] targetRenderingAreaBytes = targetRenderingArea.bytes; + final byte[] targetRenderingAreaBytes = targetRenderingArea.pixels; final int textureWidth = textureBitmap.width; @@ -105,7 +105,7 @@ public class ForwardOrientedTexture extends AbstractCoordinateShape { this.scale = scale * SIZE_MULTIPLIER; } - public Point3D getLocation(){ + public Point3D getLocation() { return coordinates[0].coordinate; }