Skip to content

Commit 30af067

Browse files
committed
Use real pinch in panzoom
1 parent 9bfe2f8 commit 30af067

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"autosize": "^4.0.0",
1616
"glsl-parser": "git+https://github.com/anvaka/glslx.git#glsl-parser",
1717
"ngraph.events": "0.0.4",
18-
"panzoom": "^3.0.0",
18+
"panzoom": "^4.0.0",
1919
"query-state": "^4.0.0",
2020
"stylus": "^0.54.5",
2121
"stylus-loader": "^3.0.1",

src/lib/scene.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/**
22
* This file is based on https://github.com/mapbox/webgl-wind
33
* by Vladimir Agafonkin
4-
*
4+
*
55
* Released under ISC License, Copyright (c) 2016, Mapbox
66
* https://github.com/mapbox/webgl-wind/blob/master/LICENSE
7-
*
7+
*
88
* Adapted to field maps by Andrei Kashcha
99
* Copyright (C) 2017
1010
*/
@@ -22,8 +22,8 @@ import createInputsModel from './createInputsModel';
2222

2323
/**
2424
* Kicks offs the app rendering. Initialized before even vue is loaded.
25-
*
26-
* @param {WebGLRenderingContext} gl
25+
*
26+
* @param {WebGLRenderingContext} gl
2727
*/
2828
export default function initScene(gl) {
2929
// Canvas size management
@@ -32,7 +32,7 @@ export default function initScene(gl) {
3232
window.addEventListener('resize', onResize, true);
3333

3434
// Video capturing is available in super advanced mode. You'll need to install
35-
// and start https://github.com/greggman/ffmpegserver.js
35+
// and start https://github.com/greggman/ffmpegserver.js
3636
// Then type in the console: window.startRecord();
3737
// This will trigger frame-by-frame recording (it is slow). To stop it, call window.stopRecord();
3838
bus.on('start-record', startRecord);
@@ -52,7 +52,7 @@ export default function initScene(gl) {
5252
var particleCount = appState.getParticleCount();
5353

5454
gl.disable(gl.DEPTH_TEST);
55-
gl.disable(gl.STENCIL_TEST);
55+
gl.disable(gl.STENCIL_TEST);
5656

5757
// Context variable is a way to share rendering state between multiple programs. It has a lot of stuff on it.
5858
// I found that it's the easiest way to work in state-full world of WebGL.
@@ -84,7 +84,7 @@ export default function initScene(gl) {
8484
// current frame number. Reset every time when new shader is compiled
8585
frame: 0,
8686

87-
// Information about mouse cursor. Could be useful to simplify
87+
// Information about mouse cursor. Could be useful to simplify
8888
// exploration
8989
cursor: {
9090
// Where mouse was last time clicked (or tapped)
@@ -161,7 +161,7 @@ export default function initScene(gl) {
161161
}
162162
}
163163

164-
var panzoom = initPanzoom();
164+
var panzoom = initPanzoom();
165165
restoreBBox();
166166

167167
setTimeout(() => {
@@ -351,6 +351,7 @@ export default function initScene(gl) {
351351

352352
function initPanzoom() {
353353
let initializedPanzoom = makePanzoom(gl.canvas, {
354+
realPinch: true,
354355
zoomSpeed: 0.025,
355356
controller: wglPanZoom(gl.canvas, updateBoundingBox)
356357
});
@@ -439,4 +440,4 @@ export default function initScene(gl) {
439440
// a hack to trigger panzoom event
440441
panzoom.moveBy(0, 0, false);
441442
}
442-
}
443+
}

0 commit comments

Comments
 (0)