AlphaTab.Rendering.TabBarRenderer.GetTabY C# (CSharp) 메소드

GetTabY() 공개 메소드

Gets the relative y position of the given steps relative to first line.
public GetTabY ( int line, float correction ) : float
line int the amount of steps while 2 steps are one line
correction float
리턴 float
        public float GetTabY(int line, float correction = 0)
        {
            return (LineOffset * line) + (correction * Scale);
        }