///<summary>Get instance</summary>
 public static ShapeCollector getI()
 {
     if (shapeCollector== null)
     {
         shapeCollector = new ShapeCollector();
     }
     return shapeCollector;
 }
 public static void setI(ShapeCollector shape)
 {
     shapeCollector = shape;
 }