-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.99 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body align="center">
<h1 align="center">Algoritmos de dibujado de linea</h1>
<div align="center">
<div class="Metodos">
<input type="radio" id="Directo" name="Metodos" value="Directo" checked="true"
onclick="HandleMetodo(this);"><label for="Directo"><span>Directo</span></label>
<input type="radio" id="DDA" name="Metodos" value="DDA" onclick="HandleMetodo(this);"><label
for="DDA">DDA</label>
<input type="radio" id="Bresenhan" name="Metodos" value="Bresenhan" onclick="HandleMetodo(this);"><label
for="Bresenhan">Bresenhan</label>
<br>
<br>
<div class="Metodos">
<input type="radio" id="Linea" name="Herramienta" value="Linea" checked="true" onclick="HandleHerramienta(this);"><label
for="Linea">Linea</label>
<input type="radio" id="Circulo" name="Herramienta" value="Circulo" onclick="HandleHerramienta(this);"><label
for="Circulo">Circulo</label>
<input type="radio" id="Elipse" name="Herramienta" value="Elipse" onclick="HandleHerramienta(this);"><label
for="Elipse">Elipse</label>
<input type="radio" id="Poligono" name="Herramienta" value="Poligono" onclick="HandleHerramienta(this);"><label
for="Poligono">Poligono</label>
<input type="number" id="N_Lados" name="Herramienta" min="3" value="3" style="width: 4em"
onchange="handleNumberTool(this);">
</div>
<br>
<button onclick="Limpiar()">Limpiar</button>
<button onclick="Prueba()">Pruebas</button>
</div>
<br>
<canvas id="canvas" width="1000px" height="1000px" style="border: 1px solid black;"></canvas>
</div>
</body>
<!-- <script src="./Metodos.js"></script> -->
<script src="./index.js"></script>
</html>