Skip to content

Commit 5867675

Browse files
committed
fix touch events
1 parent 512e7cf commit 5867675

File tree

3 files changed

+33
-21
lines changed

3 files changed

+33
-21
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ Examples
9393
History
9494
---------
9595

96+
Version 1.3.1:
97+
98+
- Fixed touch events in some of the interactive demos
99+
- Fixed issues with BezierCurve, BezierSurface
100+
- Robustness improvement in autonormal feature of SurfaceEval
101+
- Correctness and other fixes
102+
96103
Version 1.3:
97104

98105
- Camera class rewritten again, but backwards compatible with

camera.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -395,32 +395,38 @@ function InputTracker(element){
395395
if(e.button==2){
396396
thisObj.rightButton=e.isDown;
397397
}
398-
thisObj.clientX=e.clientX-InputTracker._getPageX(e.target);
399-
thisObj.clientY=e.clientY-InputTracker._getPageY(e.target);
398+
if(e.button==0 && e.touch && !e.isDown){
399+
thisObj.clientX=null;
400+
thisObj.clientY=null;
401+
thisObj.lastClient=[];
402+
} else {
403+
thisObj.clientX=e.clientX-InputTracker._getPageX(e.target);
404+
thisObj.clientY=e.clientY-InputTracker._getPageY(e.target);
405+
}
400406
}
401407
element.addEventListener("mousedown",function(e){
402408
mouseEvent(thisObj,{"target":e.target,"isDown":true,"button":e.button,
403409
"clientX":e.clientX,"clientY":e.clientY});
404410
})
405411
element.addEventListener("touchstart",function(e){
406412
mouseEvent(thisObj,{"target":e.target,"isDown":true,"button":0,
407-
"clientX":e.clientX,"clientY":e.clientY});
413+
"clientX":e.touches[0].clientX,"clientY":e.touches[0].clientY,"touch":true});
408414
})
409415
element.addEventListener("mouseup",function(e){
410416
mouseEvent(thisObj,{"target":e.target,"isDown":false,"button":e.button,
411417
"clientX":e.clientX,"clientY":e.clientY});
412418
})
413419
element.addEventListener("touchend",function(e){
414420
mouseEvent(thisObj,{"target":e.target,"isDown":false,"button":0,
415-
"clientX":e.clientX,"clientY":e.clientY});
421+
"clientX":e.changedTouches[0].clientX,"clientY":e.changedTouches[0].clientY,"touch":true});
416422
})
417423
element.addEventListener("mousemove",function(e){
418424
mouseEvent(thisObj,{"target":e.target,"isDown":false,"button":-1,
419425
"clientX":e.clientX,"clientY":e.clientY});
420426
})
421427
element.addEventListener("touchmove",function(e){
422428
mouseEvent(thisObj,{"target":e.target,"isDown":false,"button":-1,
423-
"clientX":e.clientX,"clientY":e.clientY});
429+
"clientX":e.touches[0].clientX,"clientY":e.touches[0].clientY,"touch":true});
424430
})
425431
};
426432
/**

tutorials/surfaces.md

+15-16
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,20 @@ that was used to produce the pictures on this page.
4444

4545
The comments explain how `makeMesh` works in detail.
4646

47-
function makeMesh(func,resolution){
48-
// Default resolution is 50
49-
if(resolution==null)resolution=50
50-
// create a new mesh
51-
var mesh=new Mesh();
52-
// define a color gradient evaluator for
53-
// demonstration purposes. Instead of X, Y, and Z,
54-
// generate a Red/Green/Blue color based on
55-
// the same parameters U and V as the surface
56-
// function for 3D points.
57-
var colorGradient={
58-
evaluate:function(u,v){ return [1-u,v,u]; }
59-
}
47+
function makeMesh(func,resolution){
48+
// Default resolution is 50
49+
if(resolution==null)resolution=50
50+
// create a new mesh
51+
var mesh=new Mesh();
52+
// define a color gradient evaluator for
53+
// demonstration purposes. Instead of X, Y, and Z,
54+
// generate a Red/Green/Blue color based on
55+
// the same parameters U and V as the surface
56+
// function for 3D points.
57+
var colorGradient={
58+
evaluate:function(u,v){ return [1-u,v,u]; }
59+
}
6060
// generate the parametric surface.
61-
6261
var ev=new SurfaceEval()
6362
.vertex(func)
6463
// Specify the color gradient evaluator defined above
@@ -76,7 +75,7 @@ The comments explain how `makeMesh` works in detail.
7675
.evalSurface(mesh,Mesh.TRIANGLES,resolution,resolution);
7776
// Surface generated, return the mesh
7877
return mesh;
79-
}
78+
}
8079

8180
In the HTML 3D Library, parametric surface objects define one method, "evaluate",
8281
which returns a 3D point given a U parameter and a V parameter. (By default, U and
@@ -166,4 +165,4 @@ The following pages of mine on CodeProject also discuss this library:
166165

167166
* [_Public-Domain HTML 3D Library_](http://www.codeproject.com/Tips/896839/Public-Domain-HTML-ThreeD-Library)
168167
* [_Creating shapes using the Public Domain HTML 3D Library_](http://www.codeproject.com/Tips/987914/Creating-shapes-using-the-Public-Domain-HTML-D-Lib)
169-
* [_The "Camera" and the Perspective and View Transforms_](http://www.codeproject.com/Tips/989978/The-Camera-and-the-Projection-and-View-Transforms)
168+
* [_The "Camera" and the Projection and View Transforms_](http://www.codeproject.com/Tips/989978/The-Camera-and-the-Projection-and-View-Transforms)

0 commit comments

Comments
 (0)