@@ -245,6 +245,7 @@ var Point = Base.extend(/** @lends Point# */{
245245 *
246246 * @name Point#add
247247 * @function
248+ * @operator
248249 * @param {Number } number the number to add
249250 * @return {Point } the addition of the point and the value as a new point
250251 *
@@ -260,6 +261,7 @@ var Point = Base.extend(/** @lends Point# */{
260261 *
261262 * @name Point#add
262263 * @function
264+ * @operator
263265 * @param {Point } point the point to add
264266 * @return {Point } the addition of the two points as a new point
265267 *
@@ -281,6 +283,7 @@ var Point = Base.extend(/** @lends Point# */{
281283 *
282284 * @name Point#subtract
283285 * @function
286+ * @operator
284287 * @param {Number } number the number to subtract
285288 * @return {Point } the subtraction of the point and the value as a new point
286289 *
@@ -296,6 +299,7 @@ var Point = Base.extend(/** @lends Point# */{
296299 *
297300 * @name Point#subtract
298301 * @function
302+ * @operator
299303 * @param {Point } point the point to subtract
300304 * @return {Point } the subtraction of the two points as a new point
301305 *
@@ -317,6 +321,7 @@ var Point = Base.extend(/** @lends Point# */{
317321 *
318322 * @name Point#multiply
319323 * @function
324+ * @operator
320325 * @param {Number } number the number to multiply by
321326 * @return {Point } the multiplication of the point and the value as a new point
322327 *
@@ -332,6 +337,7 @@ var Point = Base.extend(/** @lends Point# */{
332337 *
333338 * @name Point#multiply
334339 * @function
340+ * @operator
335341 * @param {Point } point the point to multiply by
336342 * @return {Point } the multiplication of the two points as a new point
337343 *
@@ -353,6 +359,7 @@ var Point = Base.extend(/** @lends Point# */{
353359 *
354360 * @name Point#divide
355361 * @function
362+ * @operator
356363 * @param {Number } number the number to divide by
357364 * @return {Point } the division of the point and the value as a new point
358365 *
@@ -368,6 +375,7 @@ var Point = Base.extend(/** @lends Point# */{
368375 *
369376 * @name Point#divide
370377 * @function
378+ * @operator
371379 * @param {Point } point the point to divide by
372380 * @return {Point } the division of the two points as a new point
373381 *
@@ -388,6 +396,7 @@ var Point = Base.extend(/** @lends Point# */{
388396 *
389397 * @name Point#modulo
390398 * @function
399+ * @operator
391400 * @param {Number } value
392401 * @return {Point } the integer remainders of dividing the point by the value
393402 * as a new point
@@ -402,6 +411,7 @@ var Point = Base.extend(/** @lends Point# */{
402411 *
403412 * @name Point#modulo
404413 * @function
414+ * @operator
405415 * @param {Point } point
406416 * @return {Point } the integer remainders of dividing the points by each
407417 * other as a new point
0 commit comments