@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
14 lines (13 loc) • 354 B
JavaScript
import { b2Vec2 } from '../../Common/Math';
/**
* @private
*/
var b2ContactConstraintPoint = /** @class */ (function () {
function b2ContactConstraintPoint() {
this.localPoint = new b2Vec2();
this.rA = new b2Vec2();
this.rB = new b2Vec2();
}
return b2ContactConstraintPoint;
}());
export { b2ContactConstraintPoint };