4344454647484950
public Entity(int eid) { this.eid = eid; System.out.println("Setting eid: "+eid); this.location = new CoordinatePrecise(5550, 34, 5550); this.lastlocation = location.toAbsCoordinate(); }
96979899100101102
/****** * Entity Location */ public void setLocation(double x, double y, double z) { location = new CoordinatePrecise(x, y, z); }