Daria Vasyukova

Results 49 comments of Daria Vasyukova

I played some 5x5 wraps, they're nice! Quite refreshing after the confusing evilness of [etrat grid](https://hexapipes-git-etrat-gereleth.vercel.app/etrat/15) that I've been working on). It's neat how this grid has two distinct types...

Penrose tiles can't wrap by design so they can't be too bad. I expect something around square or cube difficulty. I don't quite understand yet what makes etrat so bad....

I tried out the cubes code today and I think the transforms logic is currently a bit wasteful. On every click we compose a transform matrix, then invert it too......

Based on my coloring experiment there are 5 ~~kite~~ thick types and 5 ~~dart~~ thin types in P3, so 10 distinct transforms in total. ![P3 tiles colored by type and...

Please see #48 for my opinion on this =).

Well the random color is just that - random. It doesn't check if similar colors are present on the board. So this happens sometimes. Bad luck =). I can leave...

I drag my fingers down to scroll down. You know, like pressing Page Down =). I made a little [REPL](https://svelte.dev/repl/954395fc61c5406185417046ab2d576b?version=3.58.0) that shows wheel event statistics when you do a pan...

I started a branch for this issue and began by inverting the panning direction and halving panning sensitivity. Panning now works as expected on my two devices, how about yours?...

There isn't currently a variable to control this. However, you can hide the labels with a bit of css. For example, put this into a cell and run it to...

You can use `layout` keyword to control overall size of the widget like this: ```python widget = BBoxWidget( image='fruit/fruit.jpg', classes=['apple', 'orange', 'pear'], layout={'width': '300px'}, ) ``` As for font size...