示例#1
0
 public Vertex(VertexCoords _selfCoords, VertexGPSCoords _gpsCoords, VertexCoords _parentCoords, double _g, double _h)
 {
     selfCoords   = _selfCoords;
     gpsCoords    = _gpsCoords;
     parentCoords = _parentCoords;
     g            = _g;
     h            = _h;
 }
示例#2
0
 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;
 }