Beispiel #1
0
 public OutdoorLabel()
 {
     lineColor = Color.YellowGreen;
     completed = false;
     vertices  = new List <Point>();
     type      = OUTDOOR_TYPE.UNKNOWN;
 }
Beispiel #2
0
 public string WrtieType(OUTDOOR_TYPE type)
 {
     for (int i = 0; i < types.Length; i++)
     {
         if (type == types[i])
         {
             return(TYPE_STR[i]);
         }
     }
     return(TYPE_STR[TYPE_STR.Length - 1]);
 }