1 package nl.tudelft.goal.ut2004.visualizer.map;
2
3 import nl.tudelft.goal.ut2004.visualizer.timeline.map.GlColor;
4 import cz.cuni.amis.pogamut.base3d.worldview.object.Location;
5
6
7
8
9
10
11
12
13
14 public class BlendTriangle {
15
16
17
18 protected BlendVertex[] verts;
19
20 public BlendTriangle() {
21 verts = new BlendVertex[3];
22 }
23
24
25
26
27 public BlendVertex[] getVerts() {
28 return verts;
29 }
30
31
32
33
34
35
36
37 public void setVertex(int i, Location location, GlColor color) {
38 verts[i] = new BlendVertex(location, color);
39 }
40 }