-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshapes.html
32 lines (32 loc) · 1.39 KB
/
shapes.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
<!DOCTYPE html>
<html>
<head>
<style>
h2 {font-family:Arial, Helvetica, sans-serif; }
label {font-family:Arial, Helvetica, sans-serif; }
</style>
</head>
<body style = "background-color: rgb(10, 7, 7);">
<center>
<!--<h2>3D Wireframe Shapes</h2> !-->
<canvas id="sketch-canvas" style = "touch-action: none"></canvas>
<br>
<select id="shape-select" class="shape-select" name="shape-select">
<option value="-1"> Select a shape... </option>
<option value="0"> Cube </option>
<option value="1"> Bipyramid </option>
<option value="2"> Cylinder </option>
<option value="3"> Sphere </option>
<option value="4"> Cone </option>
</select>
<input type="checkbox" id="fill" name="fill" value="fill" checked>
<label for="fill">fill</label>
<input type="checkbox" id="cull" name="cull" value="cull" checked>
<label for="cull">cull</label>
<!--<input type="checkbox" id="perspective" name="perspective" value="perspective" checked>
<label for="perspective">perspective projection</label> !-->
<script src="shapes.js"> </script>
</center>
</body>
</html>