Changed license to Creative Commons Zero (CC0).
[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 *
6  */
7
8 package eu.svjatoslav.sixth.e3d.renderer.raster.slicer;
9
10 import eu.svjatoslav.sixth.e3d.geometry.Point2D;
11 import eu.svjatoslav.sixth.e3d.geometry.Point3D;
12
13 public class PolygonCoordinate {
14
15     public Point3D space;
16     public Point2D texture;
17
18     public PolygonCoordinate(final Point3D space, final Point2D texture) {
19         this.space = space;
20         this.texture = texture;
21     }
22
23 }