Skip to content

Commit bfee2c5

Browse files
author
cranko
committed
Release commit created with Cranko.
+++ cranko-release-info-v1 [[projects]] qnames = ["@wwtelescope/research-app-messages", "npm"] version = "0.17.3" age = 0 [[projects]] qnames = ["@wwtelescope/engine-types", "npm"] version = "0.6.7" age = 1 [[projects]] qnames = ["@wwtelescope/engine", "npm"] version = "7.29.3" age = 0 [[projects]] qnames = ["@wwtelescope/embed-common", "npm"] version = "0.3.5" age = 2 [[projects]] qnames = ["@wwtelescope/embed-creator", "npm"] version = "0.5.0" age = 2 [[projects]] qnames = ["@wwtelescope/astro", "npm"] version = "0.2.5" age = 1 [[projects]] qnames = ["@wwtelescope/engine-helpers", "npm"] version = "0.16.0" age = 2 [[projects]] qnames = ["@wwtelescope/engine-pinia", "npm"] version = "0.9.0" age = 2 [[projects]] qnames = ["@wwtelescope/research-app", "npm"] version = "0.16.0" age = 2 [[projects]] qnames = ["@wwtelescope/embed", "npm"] version = "1.7.0" age = 2 +++
2 parents 94b5cc8 + 1b2a748 commit bfee2c5

File tree

6 files changed

+37
-8
lines changed

6 files changed

+37
-8
lines changed

engine/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# @wwtelescope/engine 7.29.3 (2023-11-10)
2+
3+
- Improve handling of touch gestures: don't be so eager to rotate, and
4+
avoid panning as the user lifts up their fingers (#283, @Carifio24)
5+
- Build the UMD module with a `globalObject` of `this` rather than `self` (#282,
6+
@pkgw). This should make the distributed files work in a wider variety of
7+
contexts, including the Constellations dev builds.
8+
9+
110
# @wwtelescope/engine 7.29.2 (2023-11-03)
211

312
- Correct world <-> screen coordinate transformations for when the camera roll

engine/esm/wwt_control.js

+19-6
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ export function WWTControl() {
115115
this._pointerIds = new Array(2);
116116
this._pinchingZoomRect = new Array(2);
117117
this._moved = false;
118+
this._zooming = false;
119+
this._rotating = false;
120+
this._dragThreshold = 4;
118121

119122
this._foregroundCanvas = null;
120123
this._fgDevice = null;
@@ -1154,13 +1157,15 @@ var WWTControl$ = {
11541157

11551158
onTouchMove: function (e) {
11561159
var ev = e;
1160+
11571161
if (this._hasTwoTouches) {
11581162
var t0 = ev.touches[0];
11591163
var t1 = ev.touches[1];
11601164
var newRect = new Array(2);
11611165
newRect[0] = Vector2d.create(t0.pageX, t0.pageY);
11621166
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) {
11641169
var centerPoint = Vector2d.create(this.renderContext.width / 2, this.renderContext.height / 2);
11651170
var delta1 = Vector2d.subtract(newRect[0], this._pinchingZoomRect[0]);
11661171
var delta2 = Vector2d.subtract(newRect[1], this._pinchingZoomRect[1]);
@@ -1176,13 +1181,14 @@ var WWTControl$ = {
11761181
var angularComponent2 = Vector2d.subtract(delta2, radialComponent2);
11771182
var radialMagnitude = radialComponent1.get_length() + radialComponent2.get_length();
11781183
var angularMagnitude = angularComponent1.get_length() + angularComponent2.get_length();
1179-
if (radialMagnitude >= angularMagnitude) {
1184+
1185+
if (radialMagnitude >= 0.5 * angularMagnitude && !this._rotating) {
11801186
var oldDist = this.getDistance(this._pinchingZoomRect[0], this._pinchingZoomRect[1]);
11811187
var newDist = this.getDistance(newRect[0], newRect[1]);
11821188
var ratio = oldDist / newDist;
11831189
this.zoom(ratio);
1184-
}
1185-
else {
1190+
this._zooming = true;
1191+
} else if (!this._zooming) {
11861192
var oldCenterDelta1 = Vector2d.subtract(this._pinchingZoomRect[0], centerPoint);
11871193
var oldCenterDelta2 = Vector2d.subtract(this._pinchingZoomRect[1], centerPoint);
11881194
var newCenterDelta1 = Vector2d.subtract(newRect[0], centerPoint);
@@ -1191,26 +1197,31 @@ var WWTControl$ = {
11911197
var cross2 = this.crossProductZ(oldCenterDelta2, newCenterDelta2);
11921198
var angle1 = Math.asin(cross1 / (oldCenterDelta1.get_length() * newCenterDelta1.get_length()));
11931199
var angle2 = Math.asin(cross2 / (oldCenterDelta2.get_length() * newCenterDelta2.get_length()));
1200+
11941201
if (angle1 * angle2 >= 0) {
11951202
var angle = angle1 + angle2;
11961203
if (this.get_planetLike() || this.get_solarSystemMode()) {
11971204
angle *= -1;
11981205
}
11991206
this.roll(angle);
1207+
this._rotating = true;
12001208
}
12011209
}
12021210
}
1211+
12031212
this._pinchingZoomRect = newRect;
12041213
ev.stopPropagation();
12051214
ev.preventDefault();
12061215
return;
12071216
}
1217+
12081218
ev.preventDefault();
12091219
ev.stopPropagation();
1210-
if (this._mouseDown) {
1211-
this._dragging = true;
1220+
1221+
if (this._mouseDown && !(this._rotating || this._zooming)) {
12121222
var curX = ev.targetTouches[0].pageX - this._lastX;
12131223
var curY = ev.targetTouches[0].pageY - this._lastY;
1224+
this._dragging = this._dragging || (Math.sqrt(curX * curX + curY * curY) > this._dragThreshold);
12141225
this.move(curX, curY);
12151226
this._lastX = ev.targetTouches[0].pageX;
12161227
this._lastY = ev.targetTouches[0].pageY;
@@ -1248,6 +1259,8 @@ var WWTControl$ = {
12481259
}
12491260
this._mouseDown = false;
12501261
this._dragging = false;
1262+
this._zooming = false;
1263+
this._rotating = false;
12511264
},
12521265

12531266
// Pointer events

engine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"tscheck": "tsc"
5757
},
5858
"types": "./src/index.d.ts",
59-
"version": "7.29.2"
59+
"version": "7.29.3"
6060
}

engine/webpack.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ var config = {
44
entry: "./esm/index.js",
55
output: {
66
path: path.resolve(__dirname, "src"),
7+
globalObject: "this",
78
library: {
89
name: "wwtlib",
910
type: "umd"

research-app-messages/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# @wwtelescope/research-app-messages 0.17.3 (2023-11-10)
2+
3+
- Update to the latest typedoc, and other improvements to the documentation
4+
infrastructure (#274, #275, #276, #277, #278, @pkgw).
5+
6+
17
# @wwtelescope/research-app-messages 0.17.2 (2023-09-15)
28

39
- Update sponsorship branding and "front door" email address (#269, #271, @pkgw).

research-app-messages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
},
3434
"type": "module",
3535
"types": "./dist/src/index.d.ts",
36-
"version": "0.17.2"
36+
"version": "0.17.3"
3737
}

0 commit comments

Comments
 (0)