add float and gis_coordinates

This commit is contained in:
Aleksey Chichenkov 2018-12-03 17:05:12 +03:00
parent 73ae81d3de
commit 00fea5ca4a
4 changed files with 118 additions and 2 deletions

View 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) {},
};

View 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) {
};