-
Notifications
You must be signed in to change notification settings - Fork 0
/
Figura_13.js
482 lines (412 loc) · 9.37 KB
/
Figura_13.js
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
// FIGURA
function ViewFigure13(){
var canvas = document.getElementById('CanvSect13');
var ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
// linea cental - (BASE CUBO)
ctx.beginPath();
ctx.moveTo(150, 127);
ctx.lineTo(150, 145);
ctx.stroke();
ctx.fill();
ctx.closePath();
// linea derecha central - CUBO
ctx.beginPath();
ctx.moveTo(150, 145); // Linea derecha (BASE CUBO)
ctx.lineTo(162, 137);
ctx.stroke();
ctx.closePath();
// union derecha base
ctx.beginPath();
ctx.moveTo(193, 45);
ctx.lineTo(220, 55); // linea 90° derecha
ctx.lineTo(220, 100);
ctx.lineTo(180, 125);
ctx.stroke();
ctx.closePath();
// lateral cierre cuadrado atras
ctx.beginPath();
ctx.moveTo(180, 125);
ctx.lineTo(115, 98);
ctx.stroke();
ctx.closePath();
// linea izquierda central - CUBO
ctx.beginPath();
ctx.moveTo(150, 145); // Linea izquierda (BASE CUBO)
ctx.lineTo(50, 105);
ctx.lineTo(50, 79);
ctx.stroke();
ctx.closePath();
// linea atras derecha - (BASE CUBO)
ctx.beginPath();
ctx.moveTo(168, 37);
ctx.lineTo(125, 20);
ctx.lineTo(65, 53);
ctx.stroke();
ctx.closePath();
// linea inferior cara #2 - #3
ctx.beginPath();
ctx.moveTo(70, 95); // Linea barra Base 2.0 Izquierda
ctx.lineTo(150, 128);
ctx.lineTo(162, 120); // Linea barra base 2.0 (Vista frontal- lateral)
ctx.lineTo(162, 138);
ctx.stroke();
ctx.closePath();
// cubo frontal inferior
ctx.beginPath();
ctx.moveTo(162, 120); // Linea barra base 2.0 (Vista frontal- lateral)
ctx.lineTo(85, 88);
ctx.lineTo(70, 95);
ctx.stroke();
ctx.closePath();
// linea 90 cubo inferior
ctx.beginPath();
ctx.moveTo(85, 88);
ctx.lineTo(85, 60);
ctx.lineTo(65, 52);
ctx.stroke();
ctx.closePath();
// cuadro izquierdo acostado
ctx.beginPath();
ctx.moveTo(85, 80);
ctx.lineTo(65, 72);
ctx.lineTo(65, 53);
ctx.stroke();
ctx.closePath();
// --------------------------------------------
// Linea 90 derecha - izquierda (1)
ctx.beginPath();
ctx.moveTo(220, 55);
ctx.lineTo(205, 65);
ctx.lineTo(205, 78);
ctx.lineTo(190, 87);
ctx.stroke();
ctx.closePath();
// Linea 90 derecha - izquierda (1)
ctx.beginPath();
ctx.moveTo(190, 87);
ctx.lineTo(190, 95);
ctx.lineTo(180, 101);
ctx.stroke();
ctx.closePath();
// Linea 90 derecha - izquierda (1)
ctx.beginPath();
ctx.moveTo(180, 100);
ctx.lineTo(180, 126);
ctx.stroke();
ctx.closePath();
// --------------------------------------------
// linea 90 izquierda borde (1)
ctx.beginPath();
ctx.lineTo(70, 85);
ctx.lineTo(70, 95);
ctx.stroke();
ctx.closePath();
// linea 90 izquierda borde (1)
ctx.beginPath();
ctx.moveTo(168, 36);
ctx.lineTo(150, 47);
ctx.lineTo(125, 38);
ctx.lineTo(85, 60);
ctx.stroke();
ctx.closePath();
// linea medio atras superior
ctx.beginPath();
ctx.moveTo(205, 65);
ctx.lineTo(175, 55);
ctx.stroke();
ctx.closePath();
// --------------------------------------------
// Cuadro derecho superior
ctx.beginPath();
ctx.moveTo(205, 78);
ctx.lineTo(175, 68);
ctx.lineTo(175, 55);
ctx.lineTo(193, 45);
ctx.stroke();
ctx.closePath();
// triangulo superior (1)
ctx.beginPath();
ctx.moveTo(125, 38);
ctx.lineTo(108, 57);
ctx.stroke();
ctx.closePath();
// triangulo superior (2)
ctx.beginPath();
ctx.moveTo(150, 47);
ctx.lineTo(135, 67);
ctx.lineTo(167, 50);
ctx.lineTo(168, 37);
ctx.stroke();
ctx.closePath();
// linea atras triangulo
ctx.beginPath();
ctx.moveTo(167, 50);
ctx.lineTo(178, 54);
ctx.stroke();
ctx.closePath();
// Linea superior - inferior (bases) (2)
ctx.beginPath();
ctx.moveTo(190, 87);
ctx.lineTo(108, 57);
ctx.stroke();
ctx.closePath();
// linea superior - inferior (bases) (3)
ctx.beginPath();
ctx.moveTo(190, 95);
ctx.lineTo(108, 65);
ctx.stroke();
ctx.closePath();
// Linea corte lateral
ctx.beginPath();
ctx.moveTo(109, 58);
ctx.lineTo(109, 67);
ctx.lineTo(85, 80);
ctx.stroke();
ctx.closePath();
// linea superior - inferior (bases) (4)
ctx.beginPath();
ctx.moveTo(180, 100);
ctx.lineTo(115, 77);
ctx.lineTo(102, 85);
ctx.lineTo(85, 78);
ctx.lineTo(70, 86);
ctx.lineTo(50, 79);
ctx.lineTo(67, 71);
ctx.stroke();
ctx.closePath();
// Linea medio parte frontal (90)
ctx.beginPath();
ctx.moveTo(102, 85);
ctx.lineTo(102, 95);
ctx.stroke();
ctx.closePath();
// linea medio hueco
ctx.beginPath();
ctx.moveTo(115, 77);
ctx.lineTo(115, 100);
ctx.stroke();
ctx.closePath();
}
// VISTA SUPERIOR
function ViewVist_Sup13(){
var canvas = document.getElementById('CanvSect13');
var ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
// ---------- SECCION INFERIOR ----------
// cuadro izquierdo
ctx.beginPath();
ctx.fillStyle = "rgba(249, 16, 16, 0.7)";
ctx.fillRect(25, 105, 50, 30);
ctx.strokeRect(25, 105, 50, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
// cuadro medio largo
ctx.beginPath();
ctx.fillStyle = 'rgba(240, 235, 234, 0.9)';
ctx.fillRect(75, 105, 200, 30);
ctx.strokeRect(75, 105, 200, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION LATERAL IZQUIERDA ----------
// figura izquierda
ctx.beginPath();
ctx.fillStyle = "rgba(255, 229, 0, 0.7)";
ctx.moveTo(25, 105);
ctx.lineTo(25, 15);
ctx.lineTo(125, 15);
ctx.lineTo(125, 45);
ctx.lineTo(75, 45);
ctx.lineTo(75, 105);
ctx.lineTo(25, 105);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION LATERAL DERECHA ----------
// cuadro extremo derecho
ctx.beginPath();
ctx.fillStyle = "lightblue";
ctx.fillRect(225, 15, 50, 30);
ctx.strokeRect(225, 15, 50, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION MEDIO ----------
// figura medio
ctx.beginPath();
ctx.fillStyle = "rgba(164, 219, 36, 0.7)";
ctx.moveTo(125, 105);
ctx.lineTo(125, 75);
ctx.lineTo(275, 75);
ctx.lineTo(275, 60);
ctx.lineTo(75, 60);
ctx.lineTo(75, 105);
ctx.lineTo(125, 105);
ctx.stroke();
ctx.fill();
ctx.closePath();
// }
// cuadro (rampa)
ctx.beginPath();
ctx.fillStyle = "lightblue";
ctx.fillRect(75, 45, 50, 15);
ctx.strokeRect(75, 45, 50, 15);
ctx.stroke();
ctx.fill();
ctx.closePath();
// figura superior - medio
ctx.beginPath();
ctx.fillStyle = "pink";
ctx.moveTo(275, 45);
ctx.lineTo(275, 60);
ctx.lineTo(125, 60);
ctx.lineTo(125, 15);
ctx.lineTo(225, 15);
ctx.lineTo(225, 45);
ctx.lineTo(275, 45);
ctx.stroke();
ctx.fill();
ctx.closePath();
}
// VISTA FRONTAL
function ViewVist_Front13(){
var canvas = document.getElementById('CanvSect13');
var ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
// ---------- SECCION INFERIOR ----------
// forma base inferior
ctx.beginPath();
ctx.fillStyle = "lightgreen";
ctx.moveTo(25, 75);
ctx.lineTo(25, 135);
ctx.lineTo(275, 135);
ctx.lineTo(275, 105);
ctx.lineTo(75, 105);
ctx.lineTo(75, 75);
ctx.lineTo(25, 75);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION MEDIO ----------
// cuadro izquierdo pequeño
ctx.beginPath();
ctx.fillStyle = "rgba(249, 16, 16, 0.7)";
ctx.fillRect(75, 75, 50, 29);
ctx.strokeRect(75, 75, 50, 29);
ctx.stroke();
ctx.fill();
ctx.closePath();
// Cuadro derecho largo
ctx.beginPath();
ctx.fillStyle = "rgba(240, 235, 234, 0.9)";
ctx.fillRect(125, 75, 150, 29);
ctx.strokeRect(125, 75, 150, 29);
ctx.stroke();
ctx.fill();
ctx.closePath();
// cuadro largo total superior
ctx.beginPath();
ctx.fillStyle = "rgba(255, 229, 0, 0.7)";
ctx.fillRect(75, 45, 200, 29);
ctx.strokeRect(75, 45, 200, 29);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION IZQUIERDA ----------
// cuadro lateral izquierdo
ctx.beginPath();
ctx.fillStyle = "rgba(240, 235, 234, 0.9)";
ctx.fillRect(25, 15, 50, 60);
ctx.strokeRect(25, 15, 50, 60);
ctx.stroke();
ctx.closePath();
// ---------- SECCION SUPERIOR ----------
// cuadro superior (1)
ctx.beginPath();
ctx.fillStyle = "lightblue";
ctx.fillRect(75, 15, 50, 30);
ctx.strokeRect(75, 15, 50, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
// cuadro superior (2)
ctx.beginPath();
ctx.fillStyle = "lightgreen";
ctx.fillRect(225, 15, 50, 30);
ctx.strokeRect(225, 15, 50, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
}
// VISTA LATERAL
function ViewVist_Lat13(){
var canvas = document.getElementById('CanvSect13');
var ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
// ---------- SECCION LATERAL IZQUIERDA ----------
// cuadro inferior (1)
ctx.beginPath();
ctx.fillStyle = "rgba(249, 16, 16, 0.7)";
ctx.fillRect(25, 105, 50, 30);
ctx.strokeRect(25, 105, 50, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
// cuadro inferior (2)
ctx.beginPath();
ctx.fillStyle = "rgba(255, 229, 0, 0.7)";
ctx.fillRect(25, 75, 50, 30);
ctx.strokeRect(25, 75, 50, 30);
ctx.stroke();
ctx.fill();
ctx.closePath();
// cuadro lateral (vacio)
ctx.beginPath();
ctx.fillStyle = "lightblue";
ctx.fillRect(75, 75, 50, 60);
ctx.strokeRect(75, 75, 50, 60);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION LATERAL DERECHA ----------
// figura lateral escalera
ctx.beginPath();
ctx.fillStyle = "rgba(249, 16, 16, 0.7)";
ctx.moveTo(125, 75);
ctx.lineTo(175, 75);
ctx.lineTo(175, 60);
ctx.lineTo(225, 60);
ctx.lineTo(225, 15);
ctx.lineTo(275, 15);
ctx.lineTo(275, 135);
ctx.lineTo(125, 135);
ctx.lineTo(125, 75);
ctx.stroke();
ctx.fill();
ctx.closePath();
// ---------- SECCION SUPERIOR ----------
// triangulo superior
ctx.beginPath();
ctx.fillStyle = "rgba(240, 235, 234, 0.9)";
ctx.moveTo(225, 15);
ctx.lineTo(225, 60);
ctx.lineTo(175, 60);
ctx.lineTo(225, 15);
ctx.stroke();
ctx.fill();
ctx.closePath();
// forma lateral izquierda
ctx.beginPath();
ctx.fillStyle = "pink";
ctx.moveTo(225, 15);
ctx.lineTo(175, 60);
ctx.lineTo(175, 75);
ctx.lineTo(75, 75);
ctx.lineTo(75, 15);
ctx.lineTo(225, 15);
ctx.stroke();
ctx.fill();
ctx.closePath();
}