public Vertex(VertexCoords _selfCoords, VertexGPSCoords _gpsCoords, VertexCoords _parentCoords, double _g, double _h) { selfCoords = _selfCoords; gpsCoords = _gpsCoords; parentCoords = _parentCoords; g = _g; h = _h; }
public Vertex(Vertex v) { selfCoords = v.selfCoords; gpsCoords = v.gpsCoords; parentCoords = v.parentCoords; g = v.g; h = v.h; closed = v.closed; open = v.open; isStart = v.isStart; }