Skip to content

Commit 96e21ba

Browse files
Evan LissoosEvan Lissoos
Evan Lissoos
authored and
Evan Lissoos
committed
Workin
1 parent 0830d0d commit 96e21ba

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
<canvas id="myGLCanvas" width="1000" height="800"></canvas>
129129
<form id="input_form">
130130
<fieldset>
131-
<legend>Frame Parameters</legend>
131+
<legend>Frame Parameters v1.0</legend>
132132
<input type="radio" name="primitive" id="wireframe" value="wireframe"> Wireframe
133133
<input type="radio" name="primitive" id="polygon" id="polygon" value="polygon" checked> Polygon
134134
<input type="radio" name="primitive" id="wirepoly" value="wirepoly" > Polygon with Edges

mp3.js

-11
Original file line numberDiff line numberDiff line change
@@ -618,14 +618,6 @@ function handleKeyUp(event) {
618618
currentlyPressedKeys[event.key] = false;
619619
}
620620

621-
function handleTouchDown(event) {
622-
eulerY += 1;
623-
}
624-
625-
function handleTouchUp(event) {
626-
eulerY -= 1;
627-
}
628-
629621
function setupSkyBox() {
630622
mySkyBox = new SkyBox();
631623
mySkyBox.loadBuffer();
@@ -649,8 +641,6 @@ function setupSkyBox() {
649641
gl.depthFunc(gl.LEQUAL);
650642
document.onkeydown = handleKeyDown;
651643
document.onkeyup = handleKeyUp;
652-
document.ontouchstart = handleTouchDown;
653-
document.ontouchend = handleTouchUp;
654644
tick();
655645
}
656646

@@ -674,6 +664,5 @@ function tick() {
674664
requestAnimFrame(tick);
675665
//animate();
676666
draw();
677-
//console.log(rMatrix);
678667
}
679668

0 commit comments

Comments
 (0)