AlphaTab.Rendering.Utils.BoundsLookup.FindBeat C# (CSharp) Method

FindBeat() public method

public FindBeat ( Beat beat ) : BeatBounds
beat AlphaTab.Model.Beat
return BeatBounds
        public BeatBounds FindBeat(Beat beat)
        {
            var id = beat.Id;
            if (_beatLookup.ContainsKey(id))
            {
                return _beatLookup[id];
            }
            return null;
        }