@xeokit/xeokit-convert
Version:
JavaScript utilities to create .XKT files
30 lines (29 loc) • 564 B
TypeScript
/**
* A kd-Tree node, used internally by {@link XKTModel}.
*
* @private
*/
export class KDNode {
/**
* Create a KDNode with an axis-aligned 3D World-space boundary.
*/
constructor(aabb: any);
/**
* The axis-aligned 3D World-space boundary of this KDNode.
*
* @type {Float64Array}
*/
aabb: Float64Array;
/**
* The {@link XKTEntity}s within this KDNode.
*/
entities: any;
/**
* The left child KDNode.
*/
left: any;
/**
* The right child KDNode.
*/
right: any;
}