@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
16 lines (15 loc) • 427 B
JavaScript
import { b2AABB } from './b2AABB';
/**
* A node in the dynamic tree. The client does not interact with this directly.
* @private
*/
var b2DynamicTreeNode = /** @class */ (function () {
function b2DynamicTreeNode() {
this.aabb = new b2AABB();
}
b2DynamicTreeNode.prototype.IsLeaf = function () {
return this.child1 == null;
};
return b2DynamicTreeNode;
}());
export { b2DynamicTreeNode };