コード例 #1
0
 public void RunLaplace()
 {
     if (initialised)
     {
         while (!laplace.RunLaplace())
         {
             ;
         }
         Debug.Log("finished");
         laplace.RenderLaplace();
     }
     else
     {
         Debug.Log("InitiateLaplace required for Laplace to function properly");
     }
 }