提交 f0af1a1f 编写于 作者: F Frank D. Martinez M

Improve lerp and lerpVectors documentation

上级 cd7d987d
......@@ -232,20 +232,20 @@
<h3>[method:this lerp]( [param:Vector2 v], [param:Float alpha] )</h3>
<p>
[page:Vector2 v] - [page:Vector2] to interpolate towards.<br />
alpha - interpolation factor (not clamped).<br /><br />
[page:Float alpha] - interpolation factor, typically in the closed interval [0, 1].<br /><br />
Linearly interpolates between this vector and [page:Vector2 v], where alpha is the
distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector2 v].
percent distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector2 v].
</p>
<h3>[method:this lerpVectors]( [param:Vector2 v1], [param:Vector2 v2], [param:Float alpha] )</h3>
<p>
[page:Vector2 v1] - the starting [page:Vector2].<br />
[page:Vector2 v2] - [page:Vector2] to interpolate towards.<br />
[page:Float alpha] - interpolation factor (not clamped).<br /><br />
[page:Float alpha] - interpolation factor, typically in the closed interval [0, 1].<br /><br />
Sets this vector to be the vector linearly interpolated between [page:Vector2 v1] and
[page:Vector2 v2] where alpha is the distance along the line connecting the two vectors
[page:Vector2 v2] where alpha is the percent distance along the line connecting the two vectors
- alpha = 0 will be [page:Vector2 v1], and alpha = 1 will be [page:Vector2 v2].
</p>
......
......@@ -258,20 +258,20 @@ var d = a.distanceTo( b );
<h3>[method:this lerp]( [param:Vector3 v], [param:Float alpha] )</h3>
<p>
[page:Vector3 v] - [page:Vector3] to interpolate towards.<br />
alpha - interpolation factor (not clamped).<br /><br />
[page:Float alpha] - interpolation factor, typically in the closed interval [0, 1].<br /><br />
Linearly interpolate between this vector and [page:Vector3 v], where alpha is the
distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector3 v].
percent distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector3 v].
</p>
<h3>[method:this lerpVectors]( [param:Vector3 v1], [param:Vector3 v2], [param:Float alpha] )</h3>
<p>
[page:Vector3 v1] - the starting [page:Vector3].<br />
[page:Vector3 v2] - [page:Vector3] to interpolate towards.<br />
[page:Float alpha] - interpolation factor (not clamped).<br /><br />
[page:Float alpha] - interpolation factor, typically in the closed interval [0, 1].<br /><br />
Sets this vector to be the vector linearly interpolated between [page:Vector3 v1] and
[page:Vector3 v2] where alpha is the distance along the line connecting the two vectors
[page:Vector3 v2] where alpha is the percent distance along the line connecting the two vectors
- alpha = 0 will be [page:Vector3 v1], and alpha = 1 will be [page:Vector3 v2].
</p>
......
......@@ -211,20 +211,20 @@ var d = a.dot( b );
<h3>[method:this lerp]( [param:Vector4 v], [param:Float alpha] )</h3>
<p>
[page:Vector4 v] - [page:Vector4] to interpolate towards.<br />
alpha - interpolation factor (not clamped).<br /><br />
[page:Float alpha] - interpolation factor, typically in the closed interval [0, 1].<br /><br />
Linearly interpolates between this vector and [page:Vector4 v], where alpha is the
distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector4 v].
percent distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector4 v].
</p>
<h3>[method:this lerpVectors]( [param:Vector4 v1], [param:Vector4 v2], [param:Float alpha] )</h3>
<p>
[page:Vector4 v1] - the starting [page:Vector4].<br />
[page:Vector4 v2] - [page:Vector4] to interpolate towards.<br />
[page:Float alpha] - interpolation factor (not clamped).<br /><br />
[page:Float alpha] - interpolation factor, typically in the closed interval [0, 1].<br /><br />
Sets this vector to be the vector linearly interpolated between [page:Vector4 v1] and
[page:Vector4 v2] where alpha is the distance along the line connecting the two vectors
[page:Vector4 v2] where alpha is the percent distance along the line connecting the two vectors
- alpha = 0 will be [page:Vector4 v1], and alpha = 1 will be [page:Vector4 v2].
</p>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册