From f7e2658212e4b9b11314323d211b0e9d8d57384f Mon Sep 17 00:00:00 2001 From: Mugen87 Date: Mon, 5 Aug 2019 21:40:56 +0200 Subject: [PATCH] Update builds. --- build/yuka.js | 4 ++-- build/yuka.module.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/yuka.js b/build/yuka.js index ac3576bb..e6b522f5 100644 --- a/build/yuka.js +++ b/build/yuka.js @@ -14070,6 +14070,7 @@ /** * The centroids of the node's triangles. + * Only filled for leaf nodes. * @type Array */ this.centroids = new Array(); @@ -14289,8 +14290,7 @@ } /** - * Computes the split axis. Right now, only the cardinal axes - * are potential split axes. + * Splits the node and distributes node's primitives over new child nodes. * * @param {Number} branchingFactor - The branching factor. * @return {BVHNode} A reference to this BVH node. diff --git a/build/yuka.module.js b/build/yuka.module.js index 19df8568..7e7314d9 100644 --- a/build/yuka.module.js +++ b/build/yuka.module.js @@ -14064,6 +14064,7 @@ class BVHNode { /** * The centroids of the node's triangles. + * Only filled for leaf nodes. * @type Array */ this.centroids = new Array(); @@ -14283,8 +14284,7 @@ class BVHNode { } /** - * Computes the split axis. Right now, only the cardinal axes - * are potential split axes. + * Splits the node and distributes node's primitives over new child nodes. * * @param {Number} branchingFactor - The branching factor. * @return {BVHNode} A reference to this BVH node.