Ejemplo n.º 1
0
 /// <summary>
 /// DetectDone function executes when the detection finishes, to update the information of all
 /// the markers in the scene. [internal use]
 /// </summary>
 private void DetectDone()
 {
     foreach (var key in markers.Keys)
     {
         markers[key].UpdateTrackingInfo();
     }
     signalTrackingUpdated = true;
     ARUWPUtils.TrackTick();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// DetectDone function executes when the detection finishes, to update the information of all
 /// the markers in the scene. [internal use]
 /// </summary>
 /// <param name="locatableCameraToWorld">The locatable camera transformantion at capture time</param>
 private void DetectDone(Matrix4x4 locatableCameraToWorld)
 {
     foreach (var key in markers.Keys)
     {
         markers[key].UpdateTrackingInfo(locatableCameraToWorld);
     }
     signalTrackingUpdated = true;
     ARUWPUtils.TrackTick();
 }