Esempio n. 1
0
        /// <summary>
        /// Starts loading the point cloud. When the hierarchy is loaded it is registered at the corresponding point cloud set
        /// </summary>
        public void LoadPointCloud()
        {
            setController.RegisterController(this);
            Thread thread = new Thread(LoadHierarchy);

            thread.Start();
        }
Esempio n. 2
0
 /// <summary>
 /// Starts loading the point cloud. When the hierarchy is loaded it is registered at the corresponding point cloud set
 /// </summary>
 public void LoadPointCloud()
 {
     if (setController != null && cloudPath != null)
     {
         setController.RegisterController(this);
         Thread thread = new Thread(LoadHierarchy);
         thread.Name = "Loader for " + cloudPath;
         thread.Start();
     }
 }