xtorcga
Version:
Xtor Compute Geometry Algorithm Libary 计算几何算法库
24 lines (23 loc) • 715 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Distance = void 0;
var src_1 = require("src");
/*
* @Description :
* @Author : 赵耀圣
* @QQ : 549184003
* @Date : 2021-09-30 10:54:56
* @LastEditTime : 2021-09-30 10:59:50
* @FilePath : \cga.js\src\alg\distance.ts
*/
var Distance = /** @class */ (function () {
function Distance() {
}
Distance.Point_Point = function (x0, y0, z0, x1, y1, z1) {
return src_1.vector.distance(x0, y0, z0, x1, y1, z1);
};
Distance.Point2Line = function (x0, y0, z0, sox, soy, soz, sdx, sdy, sdz) {
};
return Distance;
}());
exports.Distance = Distance;