We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2044390 commit 66a149aCopy full SHA for 66a149a
Source/Scene/Expression.js
@@ -148,7 +148,7 @@ define([
148
if (typeof x === 'number' && typeof y === 'number') {
149
return x * y;
150
} else if (x instanceof Cartesian2 && y instanceof Cartesian2) {
151
- return Cartesian2.dot(x ,y);
+ return Cartesian2.dot(x, y);
152
} else if (x instanceof Cartesian3 && y instanceof Cartesian3) {
153
return Cartesian3.dot(x, y);
154
} else if (x instanceof Cartesian4 && y instanceof Cartesian4) {
0 commit comments