Example #1
0
 public static Timelapse Instance(string photoPath)
 {
     if (_instance == null)
     {
         _instance = new Timelapse(photoPath);
     }
     return(_instance);
 }
 public TimelapseBuilder(string firstImagePath)
 {
     _timelapse = Timelapse.Instance(firstImagePath);
     this.Reset();
 }