Skip to content

Commit bd3b9da

Browse files
committed
turn off refinements
1 parent 0271961 commit bd3b9da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/traces/surface/convert.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ function SurfaceTrace(scene, surface, uid) {
2525
this.surface = surface;
2626
this.data = null;
2727
this.showContour = [false, false, false];
28-
this.dataScaleX = 1.0;
29-
this.dataScaleY = 1.0;
30-
this.refineData = true; // this could also be set by user...
3128
this.minValues = [Infinity, Infinity, Infinity];
3229
this.maxValues = [-Infinity, -Infinity, -Infinity];
3330
this.midValues = [0, 0, 0];
31+
this.dataScaleX = 1.0;
32+
this.dataScaleY = 1.0;
33+
this.refineData = false; // this could also be set by user...
3434
}
3535

3636
var proto = SurfaceTrace.prototype;

0 commit comments

Comments
 (0)