@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
16 lines (15 loc) • 436 B
JavaScript
var b2SimplexVertex = /** @class */ (function () {
function b2SimplexVertex() {
this.__fast__ = true;
}
b2SimplexVertex.prototype.Set = function (other) {
this.wA.SetV(other.wA);
this.wB.SetV(other.wB);
this.w.SetV(other.w);
this.a = other.a;
this.indexA = other.indexA;
this.indexB = other.indexB;
};
return b2SimplexVertex;
}());
export { b2SimplexVertex };