1 package nl.tudelft.goal.ut2004.visualizer.map;
2
3 import cz.cuni.amis.pogamut.base3d.worldview.object.Location;
4 import java.awt.Color;
5
6 import nl.tudelft.goal.ut2004.visualizer.timeline.map.GlColor;
7
8
9
10
11
12
13
14 public class BlendVertex {
15
16
17
18 protected GlColor color;
19
20
21
22
23 protected Location location;
24
25 public BlendVertex(Location location, Color color) {
26 this.location = location;
27 this.color = new GlColor(color);
28 }
29
30 public BlendVertex(Location location, GlColor color) {
31 this.location = location;
32 this.color = new GlColor(color);
33 }
34
35
36
37
38
39 public GlColor getColor() {
40 return color;
41 }
42
43
44
45
46
47
48 public Location getLocation() {
49 return location;
50 }
51 }