add float and gis_coordinates
This commit is contained in:
parent
73ae81d3de
commit
00fea5ca4a
4 changed files with 118 additions and 2 deletions
45
docfiles/libraries/lowlevel/float.js
Normal file
45
docfiles/libraries/lowlevel/float.js
Normal file
|
@ -0,0 +1,45 @@
|
|||
/**
|
||||
*
|
||||
* @class float
|
||||
* @memberof v2.ll
|
||||
* @param _number {number}
|
||||
*/
|
||||
function float(_number) {
|
||||
|
||||
}
|
||||
|
||||
float.prototype = {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.ll.float
|
||||
* @param {v2.ll.float} _object
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_object) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function -=
|
||||
* @memberof v2.ll.float
|
||||
* @param {v2.ll.float} _object
|
||||
* @returns {this}
|
||||
*/
|
||||
"-=": function (_object) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function -
|
||||
* @memberof v2.ll.float
|
||||
* @param {v2.ll.float} _object
|
||||
* @returns {this}
|
||||
*/
|
||||
"-": function (_object) {},
|
||||
|
||||
};
|
47
docfiles/libraries/v2/float.js
Normal file
47
docfiles/libraries/v2/float.js
Normal file
|
@ -0,0 +1,47 @@
|
|||
/**
|
||||
*
|
||||
* @class float
|
||||
* @memberof v2
|
||||
* @extends v2.base
|
||||
* @extends v2.ll.float
|
||||
* @param _number {number}
|
||||
*/
|
||||
function float(_number) {
|
||||
|
||||
}
|
||||
|
||||
float.prototype = {
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.float
|
||||
* @returns {v2.float}
|
||||
*/
|
||||
copy: function () {}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function from_number
|
||||
* @memberof v2.float
|
||||
* @param _number {number}
|
||||
* @returns {v2.float}
|
||||
*/
|
||||
float.from_number = function (_number) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function from_string
|
||||
* @memberof v2.float
|
||||
* @param _number {string}
|
||||
* @returns {v2.float}
|
||||
*/
|
||||
float.from_string = function (_number) {
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue