We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 280f5d3 commit f2e86adCopy full SHA for f2e86ad
README.md
@@ -184,11 +184,14 @@ If you prefer to learn by code rather than have step by step instructions take a
184
let filterX = x < filter.length ? 0 : 1;
185
filters[filterY][filterX] += weights[y][x];
186
matrixLog
187
- .at({ x, y })
+ .at({
188
+ x: filterX,
189
+ y: filterY
190
+ })
191
.add({
192
name: 'weights',
- x: filterX,
- y: filterY,
193
+ x,
194
+ y,
195
width: weights[0].length,
196
height: weights.length
197
});
0 commit comments