xtorcga
Version:
Xtor Compute Geometry Algorithm Libary 计算几何算法库
26 lines (25 loc) • 842 B
JavaScript
;
/*
* @Description :
* @Author : 赵耀圣
* @QQ : 549184003
* @Date : 2021-03-23 15:38:27
* @LastEditTime : 2021-03-23 16:05:43
* @FilePath : \cga.js\src\IKanimation\constaint\constraint.ts
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TypedConstraint = exports.ISpace = void 0;
var Mat4_1 = require("../../math/Mat4");
var ISpace;
(function (ISpace) {
ISpace[ISpace["Globe"] = 0] = "Globe";
ISpace[ISpace["Local"] = 1] = "Local";
})(ISpace = exports.ISpace || (exports.ISpace = {}));
var TypedConstraint = /** @class */ (function () {
function TypedConstraint() {
this.space = ISpace.Local;
this.matrix = Mat4_1.Mat4.Identity;
}
return TypedConstraint;
}());
exports.TypedConstraint = TypedConstraint;