LeapRecorder.GetProgress C# (CSharp) 메소드

GetProgress() 공개 메소드

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

Usage Example

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