LeapRecorder.GetProgress C# (CSharp) Méthode

GetProgress() public méthode

public GetProgress ( ) : float
Résultat float
  public float GetProgress() {
    return frame_index_ / frames_.Count;
  }

Usage Example

Exemple #1
0
 /** The current frame position divided by the total number of frames in the recording. */
 public float GetRecordingProgress()
 {
     return(recorder_.GetProgress());
 }