-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPSElements.js
More file actions
47 lines (45 loc) · 882 Bytes
/
PSElements.js
File metadata and controls
47 lines (45 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const PSElementType = {
Rectangle : "RECTANGLE",
Beam : "BEAM",
LBeam : "LBEAM",
Room : "ROOM"
};
const PSElement = {
rectangle_540_540 : {
width : 450,
depth : 20,
cornerSize : 112.5,
chamfer : 22.5,
holeOffset : 25,
holeWidth : 10
},
beam_7_495 : {
length : 495,
width : 45,
holeCount : 7,
holeWidth : 8,
holeLength : 45,
},
beam_1_90 : {
length : 90,
width : 45,
holeCount : 1,
holeWidth : 8,
holeLength : 45,
},
beam_7_3_495_247 : {
length1 : 495,
length2 : 247,
width : 45,
holeCount1 : 7,
holeCount2 : 3,
holeWidth : 8,
holeLength : 45,
},
room_5000_4000_3000 : {
length : 5000,
width : 4000,
height : 3000,
}
};
export { PSElement, PSElementType };