We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8079613 commit e390ef2Copy full SHA for e390ef2
generators/sculpt.js
@@ -9,7 +9,7 @@ import {
9
glslBuiltInOther
10
} from '../glsl/bindings.js';
11
12
-import {convertFunctionToString} from '../targets/helpers.js'
+import { convertFunctionToString } from '../targets/helpers.js';
13
14
import glsl from './glslParser.js';
15
@@ -68,7 +68,6 @@ ${lgt}
68
69
// Converts binary math operators to our own version
70
function replaceBinaryOp(syntaxTree) {
71
-
72
if (typeof syntaxTree === 'object') {
73
for (let node in syntaxTree) {
74
if (syntaxTree.hasOwnProperty(node)) {
@@ -343,7 +342,7 @@ export function sculptToGLSL(userProvidedSrc) {
343
342
boundSDFs[key] = glslSDF(value);
344
}
345
346
- let {boxFrame, link, cappedTorus} = boundSDFs;
+ let { boxFrame, link, cappedTorus } = boundSDFs;
347
348
349
0 commit comments