LeapRecorder.GetProgress C# (CSharp) Method

GetProgress() public method

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

Usage Example

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