Skip to content

Commit

Permalink
Update MGS.MonoCurve.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogoson committed Oct 1, 2021
1 parent 25934bf commit 9c73b75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ while (len < curve.Length)
p0 = p1;
}

//Evaluate point on the mono curve at normalized time int the range[0,1].
//Evaluate point on the mono curve at normalized time in the range[0,1].
var t = 0f;
var p0 = curve.EvaluateNormalized(t);
while (t < 1.0f)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ while (len < curve.Length)
p0 = p1;
}

//Evaluate point on the mono curve at normalized time int the range[0,1].
//Evaluate point on the mono curve at normalized time in the range[0,1].
var t = 0f;
var p0 = curve.EvaluateNormalized(t);
while (t < 1.0f)
Expand Down
2 changes: 1 addition & 1 deletion UnityProject/Assets/MGS.Packages/Curve/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ while (len < curve.Length)
p0 = p1;
}

//Evaluate point on the mono curve at normalized time int the range[0,1].
//Evaluate point on the mono curve at normalized time in the range[0,1].
var t = 0f;
var p0 = curve.EvaluateNormalized(t);
while (t < 1.0f)
Expand Down

0 comments on commit 9c73b75

Please sign in to comment.