Skip to content

Commit 842da40

Browse files
committed
rename grid to box
1 parent 15b4b26 commit 842da40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.wrapper {
22
/* Houdini Magic */
3-
background: paint(circles, 10, 5, 100%, 2, 0);
3+
background: paint(circles, 20, 8, 100%, 2, 0);
44
}

app/experiments/paint/grid/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
}
5050
}
5151

52-
drawGrid(ctx, geometry) {
52+
(ctx, geometry) {
5353
for (let i = 0; i < geometry.width; i++) {
5454
for (let j = 0; j < geometry.width; j++) {
5555
ctx.strokeStyle = `rgb(${i * 5}, ${j * 5}, ${(i+j) * 50})`

app/experiments/paint/grid/styles.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body {
66
overflow: hidden;
77
font-family: system-ui, sans-serif;
88
background-color: #fff;
9-
background-image: paint(grid);
9+
background-image: paint(box);
1010
}
1111
.no-dice {
1212
font-size: 15vmin;

0 commit comments

Comments
 (0)