forked from udacity/cs291
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (137 loc) · 9.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="lib/jquery-1.8.3.min.js"></script>
<script src="lib/three.min.js"></script>
<script src="lib/Detector.js"></script>
<script src="lib/Coordinates.js"></script>
<script src="lib/OrbitAndPanControls.js"></script>
<script src="lib/TrackballControls.js"></script>
<script src="lib/uclass_TeapotGeometry.js"></script>
<script src="lib/uclass_TeacupGeometry.js"></script>
<script src="lib/uclass_TeaspoonGeometry.js"></script>
<script src="lib/uclass_BeveledBlockGeometry.js"></script>
<script src="lib/uclass_shaders.js"></script>
<script src="lib/stats.min.js"></script>
<script src="lib/dat.gui.min.js"></script>
<script src="lib/tween.min.js"></script>
</head>
<body>
<script type="text/javascript">
function getParameterByName(name) {
var match = RegExp('[?&]' + name + '=([^&]*)')
.exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
var loadScript = getParameterByName('load');
if ('undefined' !== typeof loadScript) {
var thescript = document.createElement('script');
thescript.setAttribute('type','text/javascript');
thescript.setAttribute('src',loadScript);
document.getElementsByTagName('head')[0].appendChild(thescript);
}
</script>
<hr>
<form name="run"><label> <a href="https://www.udacity.com/course/cs291">Udacity Interactive 3D Graphics course</a> (<a href="https://github.com/udacity/cs291">github</a>);<br/>select script to load:</label>
<select name="demo"
OnChange="location.href=run.demo.options[selectedIndex].value">
<option selected>Select demo
<option value="?load=demo/unit1-fps.js">Lesson 1 FPS
<option value="?load=demo/unit1-teacup-demo.js">Lesson 1 Teacup
<option value="?load=demo/unit1-teapot-demo.js">Lesson 1 Teapot
<option value="?load=demo/unit1-teaspoon-demo.js">Lesson 1 Teaspoon
<option value="?load=demo/unit1-render-mode-0.js">Lesson 1 Render mode #0
<option value="?load=demo/unit1-render-mode-1.js">Lesson 1 Render mode #1
<option value="?load=demo/unit1-render-mode-2.js">Lesson 1 Render mode #2
<option value="?load=demo/unit2-z-fighting.js">Lesson 2 Z-fighting
<option value="?load=demo/unit2-z-fighting_fixed.js">Lesson 2 Z-fighting fixed
<option value="?load=demo/unit3-blending.js">Lesson 3 Blending
<option value="?load=demo/unit3-color-demo.js">Lesson 3 Colors
<option value="?load=demo/unit3-diffuse-demo.js">Lesson 3 Diffuse
<option value="?load=demo/unit3-over_operator.js">Lesson 3 Over operator
<option value="?load=demo/unit3-teapot-demo.js">Lesson 3 Teapot
<option value="?load=demo/unit3-tessellation-demo.js">Lesson 3 Tessellation
<option value="?load=demo/unit3-transparency.js">Lesson 3 Transparency
<option value="?load=demo/unit4-euler_angles.js">Lesson 4 Euler angles
<option value="?load=demo/unit4-robot_arm_demo.js">Lesson 4 Robot arm
<option value="?load=demo/unit4-robot_arm_demo_forearm.js">Lesson 4 Robot forearm
<option value="?load=demo/unit4-robot_arm_demo_upper_arm.js">Lesson 4 Robot upper arm
<option value="?load=demo/unit4-rotate_then_scale.js">Lesson 4 Rotate then scale
<option value="?load=demo/unit6-fog.js">Lesson 6 Fog
<option value="?load=demo/unit7-orthographic-projection.js">Lesson 7 Orthographic
<option value="?load=demo/unit7-dolly-and-zoom.js">Lesson 7 Dolly and zoom
<option value="?load=demo/unit8-uv-coordinates.js">Lesson 8 UV coordinates
<option value="?load=demo/unit8-texture-distortion.js">Lesson 8 Texture distortion
<option value="?load=demo/unit8-wrap-mode.js">Lesson 8 Wrap mode
<option value="?load=demo/unit8-texture-magnification.js">Lesson 8 Magnification
<option value="?load=demo/unit8-texture-minification.js">Lesson 8 Minification
<option value="?load=demo/unit8-mipmapping.js">Lesson 8 Mipmapping
<option value="?load=demo/unit8-anisotropy.js">Lesson 8 Anisotropy
<option value="?load=demo/unit8-particles.js">Lesson 8 Particles
<option value="?load=demo/unit9-fresnel.js">Lesson 9 Fresnel
<option value="?load=demo/unit9-energy-balanced.js">Lesson 9 Energy balanced
<option value="?load=demo/unit9-gamma.js">Lesson 9 Gamma correction
<option value="?load=demo/unit10-picking.js">Lesson 10 Picking demo
<option value="?load=demo/unit10-constant-vs-timed-steps.js">Lesson 10 Constant vs. timed steps
<option value="?load=demo/unit10-tweening-demo.js">Lesson 10 Tween keyframing
<option value="?load=demo/unit10-jaunty-hat.js">Lesson 10 Jaunty hat
</select>
or
<select name="exercises"
OnChange="location.href=run.exercises.options[selectedIndex].value">
<option selected>Select exercise
<option value="?load=unit1/fix-javascript-errors.js">Lesson 1 Problem Set - Fix javascript errors
<option value="?load=unit2/triangle-mesh.js">Lesson 2 - Triangle mesh
<option value="?load=unit2/vertex-order.js">Lesson 2 - Vertex order
<option value="?load=unit2/polygon-creation.js">Lesson 2 Problem Set - Polygon creation
<option value="?load=unit2/polygon-location.js">Lesson 2 Problem Set - Polygon location
<option value="?load=unit2/polygon-radius.js">Lesson 2 Problem Set - Polygon radius
<option value="?load=unit2/create-stairs.js">Lesson 2 Problem Set - Create stairs
<option value="?load=unit2/drinking-bird.js">Lesson 2 Problem Set - Drinking bird
<option value="?load=unit3/vertex-attributes.js">Lesson 3 - Vertex attributes
<option value="?load=unit3/diffuse-material.js">Lesson 3 - Diffuse material
<option value="?load=unit3/smooth-lambert.js">Lesson 3 - Smooth sphere
<option value="?load=unit3/drinking-bird-shiny.js">Lesson 3 Problem Set - Shiny drinking bird
<option value="?load=unit3/drinking-bird-transparency.js">Lesson 3 Problem Set - Transparent drinking bird
<option value="?load=unit4/unit4-rotation_exercise.js">Lesson 4 - Rotate a block
<option value="?load=unit4/unit4-scale_exercise.js">Lesson 4 - Scale a sphere
<option value="?load=unit4/unit4-clock_exercise.js">Lesson 4 - Two clock hands
<option value="?load=unit4/unit4-snowman_exercise.js">Lesson 4 - Snowman
<option value="?load=unit4/unit4-robot_arm_extended_exercise.js">Lesson 4 Problem Set - Extended robot arm
<option value="?load=unit4/unit4-robot_hand_exercise.js">Lesson 4 Problem Set - Robot hand
<option value="?load=unit4/unit4-flower_exercise.js">Lesson 4 Problem Set - Flower
<option value="?load=unit4/unit4-flowersquish_exercise.js">Lesson 4 Problem Set - Improved flower
<option value="?load=unit5/unit5-axis_angle_exercise.js">Lesson 5 - Make an ornament
<option value="?load=unit5/unit5-ps_cylinder_exercise.js">Lesson 5 Problem Set - Cylinder positioning
<option value="?load=unit5/unit5-ps_capsule_exercise.js">Lesson 5 Problem Set - Capsule
<option value="?load=unit5/unit5-ps_helix_exercise.js">Lesson 5 Problem Set - Helices
<option value="?load=unit5/unit5-db_geom_exercise.js">Lesson 5 Problem Set - Drinking bird face
<option value="?load=unit6/05-set-a-directional-light.js">Lesson 6 - Set a Directional Light
<option value="?load=unit6/08-head-light.js">Lesson 6 - Head light
<option value="?load=unit6/10-spot-light.js">Lesson 6 - Spot Light
<option value="?load=unit6/14-shadows.js">Lesson 6 - Shadows
<option value="?load=unit6/ps-swivel-light-control.js">Lesson 6 Problem Set - Swivel Light
<option value="?load=unit6/ps-swivel-and-tilt.js">Lesson 6 Problem Set - Swivel and Tilt
<option value="?load=unit7/06-lookat.js">Lesson 7 - Lookat
<option value="?load=unit7/12-fov-slider.js">Lesson 7 - FOV slider
<option value="?load=unit7/ps-four-viewports.js">Lesson 7 Problem Set - 4 Viewports
<option value="?load=unit7/ps-rear-view-camera.js">Lesson 7 Problem Set - Rear View Camera
<option value="?load=unit8/05-textured-square.js">Lesson 8 - Textured Square
<option value="?load=unit8/particle-grid.js">Lesson 8 - Particle Grid
<option value="?load=unit8/ps-pick-a-letter.js">Lesson 8 Problem Set - Pick a Letter
<option value="?load=unit8/ps-grassy-plain.js">Lesson 8 Problem Set - Grassy Plain
<option value="?load=unit8/ps-specular-mapping.js">Lesson 8 Problem Set - Specular Mapping
<option value="?load=unit8/ps-db-tail.js">Lesson 8 Problem Set - DB tail
<option value="?load=unit8/ps-reflection-mapping.js">Lesson 8 Problem Set - Reflection Mapping
<option value="?load=unit10/08-set-the-pivot.js">Lesson 10 - Set the Pivot
<option value="?load=unit10/17-flowing-river.js">Lesson 10 - Flowing River
</select>
or Lesson 9 exercises:
<a href="unit9/two-tone-shading/index.html">Two Tone Shading</a> |
<a href="unit9/procedural-texturing/index.html">Procedural texturing</a> |
<a href="unit9/debugging-shaders/index.html">Debugging Shaders</a> |
<a href="unit9/anisotropic-material/index.html">Anisotropic Material</a>
<div id="container" style="height: 492px, width: 876px">
</div>
</body>
</html>