Example #1
0
 private static void DepthDataCallback(int key)
 {
     for (int i = 0; i < DataInfoDepth.Length; i++)
     {
         ViveSR_Framework.GetPointer(key, i, ref DataInfoDepth[i].ptr);
     }
     ParseDepthPtrData();
 }
Example #2
0
 private static void ReconstructionDataCallback(int key)
 {
     for (int i = 0; i < DataInfoPointCloud.Length; i++)
     {
         ViveSR_Framework.GetPointer(key, i, ref DataInfoPointCloud[i].ptr);
     }
     ParseReconstructionPtrData();
 }
Example #3
0
 private static void UndistortedDataCallback(int key)
 {
     for (int i = 0; i < DataInfoUndistorted.Length; i++)
     {
         ViveSR_Framework.GetPointer(key, i, ref DataInfoUndistorted[i].ptr);
     }
     ParseUndistortedPtrData();
 }