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%2Fslicer%2FPolygonCoordinate.java;fp=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Frenderer%2Fraster%2Fslicer%2FPolygonCoordinate.java;h=328896df66d4b87518edb30f19b29aaf00acc7c0;hp=eca9afc6f902055d13f5e78e7f2979cd05b438b5;hb=77e87370474822855924c2650fcccf61cb41a05f;hpb=7f01c45bcea9575bb33d201f81b9b0056dacb909 diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/slicer/PolygonCoordinate.java b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/slicer/PolygonCoordinate.java index eca9afc..328896d 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/slicer/PolygonCoordinate.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/raster/slicer/PolygonCoordinate.java @@ -7,14 +7,26 @@ package eu.svjatoslav.sixth.e3d.renderer.raster.slicer; import eu.svjatoslav.sixth.e3d.geometry.Point2D; import eu.svjatoslav.sixth.e3d.geometry.Point3D; +/** + * Polygon coordinate. + * This class is used to store coordinates of a point in 3D space and its + * texture coordinate. + */ public class PolygonCoordinate { - public Point3D space; - public Point2D texture; + /** + * Space coordinate of the point. + */ + public Point3D spaceCoordinate; + + /** + * Texture coordinate of the point. + */ + public Point2D textureCoordinate; - public PolygonCoordinate(final Point3D space, final Point2D texture) { - this.space = space; - this.texture = texture; + public PolygonCoordinate(final Point3D spaceCoordinate, final Point2D textureCoordinate) { + this.spaceCoordinate = spaceCoordinate; + this.textureCoordinate = textureCoordinate; } }