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%2Fshapes%2Fbasic%2FForwardOrientedTexture.java;h=4d2bb1f5c6a2043448e780c66509c96d9b444ea9;hp=49af48cd56128061f84c77621c3f4199fe922477;hb=c9cca2ea38fd301c4383d14178589c09520bea22;hpb=6213716671ccab6b7256de41838e1f5401ce173c 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 49af48c..4d2bb1f 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,10 +1,10 @@ /* - * Sixth - System for data storage, computation, exploration and interaction. - * Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * Sixth 3D engine. Copyright ©2012-2018, 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 * or later as published by the Free Software Foundation. + * */ package eu.svjatoslav.sixth.e3d.renderer.raster.shapes.basic; @@ -18,7 +18,7 @@ import eu.svjatoslav.sixth.e3d.renderer.raster.texture.TextureBitmap; public class ForwardOrientedTexture extends AbstractCoordinateShape { - public static final double SIZE_MULTIPLIER = 0.005; + private static final double SIZE_MULTIPLIER = 0.005; public Texture texture; private 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,4 +105,8 @@ public class ForwardOrientedTexture extends AbstractCoordinateShape { this.scale = scale * SIZE_MULTIPLIER; } + public Point3D getLocation() { + return coordinates[0].coordinate; + } + }