Skip to content

Commit

Permalink
as JSDOC to slerp in Vector3
Browse files Browse the repository at this point in the history
  • Loading branch information
veillette committed Jun 22, 2016
1 parent 1efed24 commit 6448a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/Vector3.js
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ define( function( require ) {
* @param {Vector3} start - Start unit vector
* @param {Vector3} end - End unit vector
* @param {number} ratio - Between 0 (at start vector) and 1 (at end vector)
* @return Spherical linear interpolation between the start and end
* @return {Vector3} Spherical linear interpolation between the start and end
*/
slerp: function( start, end, ratio ) {
// NOTE: we can't create a require() loop here
Expand Down

1 comment on commit 6448a04

@veillette
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(see #49)

Please sign in to comment.