RPE Chart Utils
    Preparing search index...

    Function approximately

    • Returns a predicate that passes when the note's start beat is within epsilon beats of beat (default ε = 0.01).

      Useful for selecting notes at a specific musical position without needing exact beat-tuple equality.

      Parameters

      • beat: number
      • epsilon: number = 0.01

      Returns NotePredicate

      // Select notes that land on beat 4 (±0.01)
      noteIterator().approximately(4).setSpeed(2).run(chart);