Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f138585a5c | ||
![]() |
83207410ad | ||
![]() |
28f91d7904 | ||
![]() |
10cc259261 | ||
![]() |
cef0e8938b | ||
![]() |
3b032dfcad |
9
dist/createBoard.js
vendored
9
dist/createBoard.js
vendored
@@ -80,12 +80,21 @@ function createBoard(boardData) {
|
|||||||
boardMat.setPosition(pBase);
|
boardMat.setPosition(pBase);
|
||||||
matInv.getInverse(boardMat, true);
|
matInv.getInverse(boardMat, true);
|
||||||
}
|
}
|
||||||
|
if (boardPts && boardPts.length !== 0)
|
||||||
for (let i = 0; i < boardPts.length; i++) {
|
for (let i = 0; i < boardPts.length; i++) {
|
||||||
let pt = getVec(boardPts[i]);
|
let pt = getVec(boardPts[i]);
|
||||||
|
if (pt.z !== undefined)
|
||||||
pt.applyMatrix4(matInv);
|
pt.applyMatrix4(matInv);
|
||||||
pts.push(new THREE.Vector2(pt.x, pt.y));
|
pts.push(new THREE.Vector2(pt.x, pt.y));
|
||||||
buls.push(boardBuls[i]);
|
buls.push(boardBuls[i]);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
let length = boardData["L"];
|
||||||
|
let width = boardData["W"];
|
||||||
|
let height = boardData["H"];
|
||||||
|
pts.push(new three_1.Vector2(0, 0), new three_1.Vector2(width, 0), new three_1.Vector2(width, length), new three_1.Vector2(0, length), new three_1.Vector2(0, 0));
|
||||||
|
buls.push(0, 0, 0, 0, 0);
|
||||||
|
}
|
||||||
let sp = createPath(pts, buls);
|
let sp = createPath(pts, buls);
|
||||||
let extrudeSettings = {
|
let extrudeSettings = {
|
||||||
steps: 1,
|
steps: 1,
|
||||||
|
2
dist/createBoard.js.map
vendored
2
dist/createBoard.js.map
vendored
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cadview",
|
"name": "cadview",
|
||||||
"version": "1.0.1",
|
"version": "1.0.3",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import * as THREE from 'three';
|
import * as THREE from 'three';
|
||||||
import { Geometry, LineSegments } from 'three';
|
import { Geometry, LineSegments, Vector2 } from 'three';
|
||||||
import { polar } from './GeUtils';
|
import { polar } from './GeUtils';
|
||||||
import { boardMaterial, edgeMaterial } from './Material';
|
import { boardMaterial, edgeMaterial } from './Material';
|
||||||
import { RotateUVs } from './RotateUV';
|
import { RotateUVs } from './RotateUV';
|
||||||
@@ -101,13 +101,28 @@ export function createBoard(boardData: object)
|
|||||||
matInv.getInverse(boardMat, true);
|
matInv.getInverse(boardMat, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (boardPts && boardPts.length !== 0)
|
||||||
for (let i = 0; i < boardPts.length; i++)
|
for (let i = 0; i < boardPts.length; i++)
|
||||||
{
|
{
|
||||||
let pt = getVec(boardPts[i]);
|
let pt = getVec(boardPts[i]);
|
||||||
|
if (pt.z !== undefined)
|
||||||
pt.applyMatrix4(matInv);
|
pt.applyMatrix4(matInv);
|
||||||
pts.push(new THREE.Vector2(pt.x, pt.y));
|
pts.push(new THREE.Vector2(pt.x, pt.y));
|
||||||
buls.push(boardBuls[i]);
|
buls.push(boardBuls[i]);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
let length = boardData["L"];
|
||||||
|
let width = boardData["W"];
|
||||||
|
let height = boardData["H"];
|
||||||
|
pts.push(new Vector2(0, 0),
|
||||||
|
new Vector2(width, 0),
|
||||||
|
new Vector2(width, length),
|
||||||
|
new Vector2(0, length),
|
||||||
|
new Vector2(0, 0)
|
||||||
|
);
|
||||||
|
buls.push(0, 0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
let sp = createPath(pts, buls);
|
let sp = createPath(pts, buls);
|
||||||
let extrudeSettings = {
|
let extrudeSettings = {
|
||||||
|
Reference in New Issue
Block a user