Noah Doersing
Noah Doersing
Plus, I think that ``` if flip ^ rotate: ``` in `rotate_and_scale_lines()` must be replaced with just ``` if flip: ``` but the same caveats as above apply. Maybe it's...
`r` and `𝕣`, while *sort of* representing the same character, are not the same symbols, so them resolving to the same internal value was a surprise to me. Other –...
Bumping this issue – it would be helpful for my use case, too.
Search for it in Spotlight and press cmd to show the path.
You can deactivate notification sounds here:
Oh, I'm sorry. My phone is perpetually in silent mode, so I didn't notice that it was a service-wide setting.
I actually implemented this early on in UJI's development – the code's still there, albeit commented-out: https://github.com/doersino/uji/blob/59f85195bc252f5fc1502f427325fde52693d7eb/script.js#L309-L327 It worked fairly well when there were only a few options, but as...
Turns out: For really simple drawings with few iterations and on fast hardware, this can work – but in the general case, it'll introduce a noticeable delay. I don't think...
(This would be a conceptual kinda marriage between UJI and [tixyz](https://github.com/doersino/tixyz), I suppose.)
(Could use https://mathjs.org/docs/expressions/parsing.html for math parsing and evaluating, but it's pretty bulky. Or just straight `eval`, but, ugh. Perhaps adequate: `Function`, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/Function. Or: https://cdnjs.com/libraries/expr-eval)