Update GetPathToProgress's xml-doc.

This commit is contained in:
Damnae 2017-02-09 08:57:10 +01:00
parent a79fde897b
commit 07c0057fab
1 changed files with 2 additions and 1 deletions

View File

@ -168,7 +168,8 @@ private Vector2 interpolateVertices(int i, double d)
/// to 1 (end of the slider) and stores the generated path in the given list.
/// </summary>
/// <param name="path">The list to be filled with the computed curve.</param>
/// <param name="progress">Ranges from 0 (beginning of the slider) to 1 (end of the slider).</param>
/// <param name="p0">Start progress. Ranges from 0 (beginning of the slider) to 1 (end of the slider).</param>
/// <param name="p1">End progress. Ranges from 0 (beginning of the slider) to 1 (end of the slider).</param>
public void GetPathToProgress(List<Vector2> path, double p0, double p1)
{
double d0 = progressToDistance(p0);