-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href="src/style.css">
</head>
<body>
<div id="header">
<h1><b>Computação Gráfica</b></h1>
<h4><b>Aluno: Vítor Santos França</b></h4>
</div>
<div id="drawingDiv">
<button id="btnLine">Linha</button>
<button id="btnClean">Limpar</button>
<button id="btnCircle">Circle</button>
<input type="number" id="txtCircleRadius" placeholder="Raio" style="width:50px"></textarea>
<button id="btnTranslation">Translação</button>
<input type="number" id="txtTransX" placeholder="X" style="width:35px">
<input type="number" id="txtTransY" placeholder="Y" style="width:35px">
<input type="color" id="lineColor">
<button id="btnFill">Preenchimento</button>
<button id="btnRotation">Rotação</button>
</div>
<div id="canvasArea">
<canvas id="canvas" width="1000" height="1000" style="border:1px solid #aaa"></canvas>
</div>
<script src="src/main.js"></script>
</body>
</html>