mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-02-07 18:39:23 +03:00
Fix doc in point.js
This commit is contained in:
parent
c4428db8a5
commit
e26727488f
56
src/point.js
56
src/point.js
@ -76,10 +76,10 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Substract another Point to this point and return a new Point.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @param {OpenSeadragon.Point} point The point to substract vector components.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
* @returns {OpenSeadragon.Point} A new point representing the substraction of the
|
||||||
* vector components
|
* vector components
|
||||||
*/
|
*/
|
||||||
minus: function( point ) {
|
minus: function( point ) {
|
||||||
@ -90,11 +90,11 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Multiply this point by a factor and return a new Point.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @param {Number} factor The factor to multiply vector components.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
* @returns {OpenSeadragon.Point} A new point representing the multiplication
|
||||||
* vector components
|
* of the vector components by the factor
|
||||||
*/
|
*/
|
||||||
times: function( factor ) {
|
times: function( factor ) {
|
||||||
return new $.Point(
|
return new $.Point(
|
||||||
@ -104,11 +104,11 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Divide this point by a factor and return a new Point.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @param {Number} factor The factor to divide vector components.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
* @returns {OpenSeadragon.Point} A new point representing the division of the
|
||||||
* vector components
|
* vector components by the factor
|
||||||
*/
|
*/
|
||||||
divide: function( factor ) {
|
divide: function( factor ) {
|
||||||
return new $.Point(
|
return new $.Point(
|
||||||
@ -118,10 +118,9 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Compute the opposite of this point and return a new Point.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @returns {OpenSeadragon.Point} A new point representing the opposite of the
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
|
||||||
* vector components
|
* vector components
|
||||||
*/
|
*/
|
||||||
negate: function() {
|
negate: function() {
|
||||||
@ -129,11 +128,10 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Compute the distance between this point and another point.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @param {OpenSeadragon.Point} point The point to compute the distance with.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
* @returns {Number} The distance between the 2 points
|
||||||
* vector components
|
|
||||||
*/
|
*/
|
||||||
distanceTo: function( point ) {
|
distanceTo: function( point ) {
|
||||||
return Math.sqrt(
|
return Math.sqrt(
|
||||||
@ -143,22 +141,21 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Apply a function to each coordinate of this point and return a new point.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @param {function} func The function to apply to each coordinate.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
* @returns {OpenSeadragon.Point} A new point with the coordinates computed
|
||||||
* vector components
|
* by the specified function
|
||||||
*/
|
*/
|
||||||
apply: function( func ) {
|
apply: function( func ) {
|
||||||
return new $.Point( func( this.x ), func( this.y ) );
|
return new $.Point( func( this.x ), func( this.y ) );
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Check if this point is equal to another one.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @param {OpenSeadragon.Point} point The point to compare this point with.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
* @returns {Boolean} true if they are equal, false otherwise.
|
||||||
* vector components
|
|
||||||
*/
|
*/
|
||||||
equals: function( point ) {
|
equals: function( point ) {
|
||||||
return (
|
return (
|
||||||
@ -186,11 +183,10 @@ $.Point.prototype = /** @lends OpenSeadragon.Point.prototype */{
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add another Point to this point and return a new Point.
|
* Convert this point to a string in the format (x,y) where x and y are
|
||||||
|
* rounded to the nearest integer.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} point The point to add vector components.
|
* @returns {String} A string representation of this point.
|
||||||
* @returns {OpenSeadragon.Point} A new point representing the sum of the
|
|
||||||
* vector components
|
|
||||||
*/
|
*/
|
||||||
toString: function() {
|
toString: function() {
|
||||||
return "(" + Math.round(this.x) + "," + Math.round(this.y) + ")";
|
return "(" + Math.round(this.x) + "," + Math.round(this.y) + ")";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user