Improved code readability
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / raster / slicer / PolygonCoordinate.java
index e338145..328896d 100644 (file)
@@ -1,25 +1,32 @@
 /*
- * Sixth - System for data storage, computation, exploration and interaction.
- * Copyright ©2012-2016, 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.
+ * Sixth 3D engine. Author: Svjatoslav Agejenko.
+ * This project is released under Creative Commons Zero (CC0) license.
  */
-
 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;
     }
 
 }