-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (32 loc) · 1.21 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
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Computer Graphics</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<br><h1 align="center">Line Clipping</h1> <br>
<div class="value_enter">
<h2 align="center">Clipping Window Size</h2><br>
<p>X<sub>min</sub> = <input type="number" id="xmin"></p>
<p>X<sub>max</sub> = <input type="number" id="xmax"></p><br>
<p>Y<sub>min</sub> = <input type="number" id="ymin"></p>
<p>Y<sub>max</sub> = <input type="number" id="ymax"></p><br>
</div>
<div class="line_value">
<h2 align="center">Lines Coordinates</h2><br>
<p>X<sub>1</sub> = <input type="number" id="x1"></p>
<p>Y<sub>1</sub> = <input type="number" id="y1"></p><br>
<p>X<sub>2</sub> = <input type="number" id="x2"></p>
<p>Y<sub>2</sub> = <input type="number" id="y2"></p><br>
</div>
<div class="para">
<p id="l1" class="l1" style="word-spacing: 5px;"> </p>
</div>
<button type="button" name="button" onClick="calc()">Calculate</button><br><br>
<script src="myscript.js"></script>
</body>
</html>