@pilotlab/lux-attributes
Version:
A luxurious user experience framework, developed by your friends at Pilot.
38 lines • 1.55 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var lux_attributes_1 = require("@pilotlab/lux-attributes");
var Matrix2 = (function (_super) {
__extends(Matrix2, _super);
function Matrix2(x, y, z, label) {
return _super.call(this, 'Matrix2', null, lux_attributes_1.DataType.COLLECTION, label) || this;
}
return Matrix2;
}(lux_attributes_1.Attribute));
exports.Matrix2 = Matrix2;
var Matrix3 = (function (_super) {
__extends(Matrix3, _super);
function Matrix3(x, y, z, label) {
return _super.call(this, 'Matrix3', null, lux_attributes_1.DataType.COLLECTION, label) || this;
}
return Matrix3;
}(lux_attributes_1.Attribute));
exports.Matrix3 = Matrix3;
var Matrix4 = (function (_super) {
__extends(Matrix4, _super);
function Matrix4(x, y, z, label) {
return _super.call(this, 'Matrix4', null, lux_attributes_1.DataType.COLLECTION, label) || this;
}
return Matrix4;
}(lux_attributes_1.Attribute));
exports.Matrix4 = Matrix4;
//# sourceMappingURL=matrix.js.map