build-dxf 0.1.159 → 0.1.160
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/build.js +1 -1
package/package.json
CHANGED
package/src/build.js
CHANGED
|
@@ -22995,7 +22995,7 @@ function getBeamNearWallVec(line) {
|
|
|
22995
22995
|
}
|
|
22996
22996
|
}
|
|
22997
22997
|
function beamSupportLine(lines, {}) {
|
|
22998
|
-
const lsh = Quadtree.from(lines);
|
|
22998
|
+
const lsh = Quadtree.from(lines.filter((line) => !line.userData.isBalconyRailing));
|
|
22999
22999
|
lines.forEach((line) => {
|
|
23000
23000
|
if (WallHole.isBeam(line)) {
|
|
23001
23001
|
const findLine = line.clone();
|