修正错误的判断

This commit is contained in:
ChenX
2018-05-29 09:27:09 +08:00
parent 28f91d7904
commit 83207410ad
2 changed files with 2 additions and 2 deletions

2
dist/createBoard.js vendored
View File

@@ -80,7 +80,7 @@ function createBoard(boardData) {
boardMat.setPosition(pBase);
matInv.getInverse(boardMat, true);
}
if (boardPts || boardPts.length === 0)
if (boardPts && boardPts.length !== 0)
for (let i = 0; i < boardPts.length; i++) {
let pt = getVec(boardPts[i]);
if (pt.z !== undefined)

View File

@@ -101,7 +101,7 @@ export function createBoard(boardData: object)
matInv.getInverse(boardMat, true);
}
if (boardPts || boardPts.length === 0)
if (boardPts && boardPts.length !== 0)
for (let i = 0; i < boardPts.length; i++)
{
let pt = getVec(boardPts[i]);