8ead72cd5bc8f7a54a985fd4286a7c63b0833404
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / raster / slicer / PolygonCoordinate.java
1 /*
2  * Sixth 3D engine. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 3 of the GNU Lesser General Public License
6  * or later as published by the Free Software Foundation.
7  *
8  */
9
10 package eu.svjatoslav.sixth.e3d.renderer.raster.slicer;
11
12 import eu.svjatoslav.sixth.e3d.geometry.Point2D;
13 import eu.svjatoslav.sixth.e3d.geometry.Point3D;
14
15 public class PolygonCoordinate {
16
17     public Point3D space;
18     public Point2D texture;
19
20     public PolygonCoordinate(final Point3D space, final Point2D texture) {
21         this.space = space;
22         this.texture = texture;
23     }
24
25 }