Exemple #1
0
 public GoLayout()
 {
     visitor_ = new GoPointVisitor(this);
     ResetPoint();
 }
Exemple #2
0
 public GoPoint(GoCoord coord, GoPointVisitor vistior)
 {
     coord_   = coord;
     vistior_ = vistior;
     type_    = GoPointType.EMPTY;
 }