Skip to content

Commit dba3b32

Browse files
committed
make examples less white so they don't trip the test (why weren't these tripping it before though?)
1 parent 6260c71 commit dba3b32

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/sculptExamples/rotateVec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ const s = getSpace();
33
const rotated = rotateVec(s, axis, time);
44
setSpace(rotated);
55
displace(0.2);
6-
box(0.1, 0.1, 0.1);
6+
color(0,0,0);
7+
box(0.1, 0.1, 0.1);

test/sculptExamples/userGlsl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
let square = glslFunc("float squareit(float x) { return x * x; }");
22

3-
sphere(square(0.4));
3+
sphere(square(0.8));

0 commit comments

Comments
 (0)