Formatting update
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / raster / slicer / PolygonCoordinate.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.sixth.e3d.renderer.raster.slicer;
6
7 import eu.svjatoslav.sixth.e3d.geometry.Point2D;
8 import eu.svjatoslav.sixth.e3d.geometry.Point3D;
9
10 public class PolygonCoordinate {
11
12     public Point3D space;
13     public Point2D texture;
14
15     public PolygonCoordinate(final Point3D space, final Point2D texture) {
16         this.space = space;
17         this.texture = texture;
18     }
19
20 }