From 0894e625b03b08bcd1f7dcfc6d7e1c351a10a5c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Wed, 15 Oct 2014 13:00:50 +0200 Subject: [PATCH] Fix documentation issues with Path#get*At() Closes #537. --- src/path/Path.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/path/Path.js b/src/path/Path.js index 17d2164e..f3c3767d 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -1692,6 +1692,7 @@ var Path = PathItem.extend(/** @lends Path# */{ * Calculates the point on the path at the given offset. * * @name Path#getPointAt + * @function * @param {Number} offset the offset on the path, where {@code 0} is at * the beginning of the path and {@link Path#length} at the end. * @param {Boolean} [isParameter=false] @@ -1754,6 +1755,7 @@ var Path = PathItem.extend(/** @lends Path# */{ * Calculates the tangent vector of the path at the given offset. * * @name Path#getTangentAt + * @function * @param {Number} offset the offset on the path, where {@code 0} is at * the beginning of the path and {@link Path#length} at the end. * @param {Boolean} [isParameter=false] @@ -1824,6 +1826,7 @@ var Path = PathItem.extend(/** @lends Path# */{ * Calculates the normal vector of the path at the given offset. * * @name Path#getNormalAt + * @function * @param {Number} offset the offset on the path, where {@code 0} is at * the beginning of the path and {@link Path#length} at the end. * @param {Boolean} [isParameter=false] @@ -1897,6 +1900,7 @@ var Path = PathItem.extend(/** @lends Path# */{ * at the given offset is the reciprocal value of its curvature. * * @name Path#getCurvatureAt + * @function * @param {Number} offset the offset on the path, where {@code 0} is at * the beginning of the path and {@link Path#length} at the end. * @param {Boolean} [isParameter=false]