@@ -115,6 +115,9 @@ export function WWTControl() {
115
115
this . _pointerIds = new Array ( 2 ) ;
116
116
this . _pinchingZoomRect = new Array ( 2 ) ;
117
117
this . _moved = false ;
118
+ this . _zooming = false ;
119
+ this . _rotating = false ;
120
+ this . _dragThreshold = 4 ;
118
121
119
122
this . _foregroundCanvas = null ;
120
123
this . _fgDevice = null ;
@@ -1154,13 +1157,15 @@ var WWTControl$ = {
1154
1157
1155
1158
onTouchMove : function ( e ) {
1156
1159
var ev = e ;
1160
+
1157
1161
if ( this . _hasTwoTouches ) {
1158
1162
var t0 = ev . touches [ 0 ] ;
1159
1163
var t1 = ev . touches [ 1 ] ;
1160
1164
var newRect = new Array ( 2 ) ;
1161
1165
newRect [ 0 ] = Vector2d . create ( t0 . pageX , t0 . pageY ) ;
1162
1166
newRect [ 1 ] = Vector2d . create ( t1 . pageX , t1 . pageY ) ;
1163
- if ( this . _pinchingZoomRect [ 0 ] != null && this . _pinchingZoomRect [ 1 ] != null ) {
1167
+
1168
+ if ( ! this . _dragging && this . _pinchingZoomRect [ 0 ] != null && this . _pinchingZoomRect [ 1 ] != null ) {
1164
1169
var centerPoint = Vector2d . create ( this . renderContext . width / 2 , this . renderContext . height / 2 ) ;
1165
1170
var delta1 = Vector2d . subtract ( newRect [ 0 ] , this . _pinchingZoomRect [ 0 ] ) ;
1166
1171
var delta2 = Vector2d . subtract ( newRect [ 1 ] , this . _pinchingZoomRect [ 1 ] ) ;
@@ -1176,13 +1181,14 @@ var WWTControl$ = {
1176
1181
var angularComponent2 = Vector2d . subtract ( delta2 , radialComponent2 ) ;
1177
1182
var radialMagnitude = radialComponent1 . get_length ( ) + radialComponent2 . get_length ( ) ;
1178
1183
var angularMagnitude = angularComponent1 . get_length ( ) + angularComponent2 . get_length ( ) ;
1179
- if ( radialMagnitude >= angularMagnitude ) {
1184
+
1185
+ if ( radialMagnitude >= 0.5 * angularMagnitude && ! this . _rotating ) {
1180
1186
var oldDist = this . getDistance ( this . _pinchingZoomRect [ 0 ] , this . _pinchingZoomRect [ 1 ] ) ;
1181
1187
var newDist = this . getDistance ( newRect [ 0 ] , newRect [ 1 ] ) ;
1182
1188
var ratio = oldDist / newDist ;
1183
1189
this . zoom ( ratio ) ;
1184
- }
1185
- else {
1190
+ this . _zooming = true ;
1191
+ } else if ( ! this . _zooming ) {
1186
1192
var oldCenterDelta1 = Vector2d . subtract ( this . _pinchingZoomRect [ 0 ] , centerPoint ) ;
1187
1193
var oldCenterDelta2 = Vector2d . subtract ( this . _pinchingZoomRect [ 1 ] , centerPoint ) ;
1188
1194
var newCenterDelta1 = Vector2d . subtract ( newRect [ 0 ] , centerPoint ) ;
@@ -1191,26 +1197,31 @@ var WWTControl$ = {
1191
1197
var cross2 = this . crossProductZ ( oldCenterDelta2 , newCenterDelta2 ) ;
1192
1198
var angle1 = Math . asin ( cross1 / ( oldCenterDelta1 . get_length ( ) * newCenterDelta1 . get_length ( ) ) ) ;
1193
1199
var angle2 = Math . asin ( cross2 / ( oldCenterDelta2 . get_length ( ) * newCenterDelta2 . get_length ( ) ) ) ;
1200
+
1194
1201
if ( angle1 * angle2 >= 0 ) {
1195
1202
var angle = angle1 + angle2 ;
1196
1203
if ( this . get_planetLike ( ) || this . get_solarSystemMode ( ) ) {
1197
1204
angle *= - 1 ;
1198
1205
}
1199
1206
this . roll ( angle ) ;
1207
+ this . _rotating = true ;
1200
1208
}
1201
1209
}
1202
1210
}
1211
+
1203
1212
this . _pinchingZoomRect = newRect ;
1204
1213
ev . stopPropagation ( ) ;
1205
1214
ev . preventDefault ( ) ;
1206
1215
return ;
1207
1216
}
1217
+
1208
1218
ev . preventDefault ( ) ;
1209
1219
ev . stopPropagation ( ) ;
1210
- if ( this . _mouseDown ) {
1211
- this . _dragging = true ;
1220
+
1221
+ if ( this . _mouseDown && ! ( this . _rotating || this . _zooming ) ) {
1212
1222
var curX = ev . targetTouches [ 0 ] . pageX - this . _lastX ;
1213
1223
var curY = ev . targetTouches [ 0 ] . pageY - this . _lastY ;
1224
+ this . _dragging = this . _dragging || ( Math . sqrt ( curX * curX + curY * curY ) > this . _dragThreshold ) ;
1214
1225
this . move ( curX , curY ) ;
1215
1226
this . _lastX = ev . targetTouches [ 0 ] . pageX ;
1216
1227
this . _lastY = ev . targetTouches [ 0 ] . pageY ;
@@ -1248,6 +1259,8 @@ var WWTControl$ = {
1248
1259
}
1249
1260
this . _mouseDown = false ;
1250
1261
this . _dragging = false ;
1262
+ this . _zooming = false ;
1263
+ this . _rotating = false ;
1251
1264
} ,
1252
1265
1253
1266
// Pointer events
0 commit comments