Caleb Evans
Caleb Evans
@siripravi The only way I was able to make arc text work in jCanvas is to draw each letter individually. And because I don't have access to the kerning data...
@afunworm To confirm, are you able to call regular (non-jCanvas) jQuery methods?
@afunworm jCanvas methods exist in the same namespace as regular jQuery methods. So in the same way that you call a regular jQuery method: ```js import * as $ from...
@afunworm Which JS file are you using in your project? `jcanvas.js` or `jcanvas.min.js`? If the latter, perhaps you need to do this: ``` import 'jcanvas.min'; ```
@abhinavsinha-adrino I think I understand. Personally, I would prefer the primitives in this library to be consistent with the theory as much as possible, and if GNFA can theoretically read...
@abhinavsinha-adrino Thank you for your candor and thoughtfulness in challenging my proposed approach. It shows you really care about the direction and quality of the library, and for that I...
@abhinavsinha-adrino Just wanted to check in: do you have any thoughts on my caching mechanism to efficiently manage an underlying NFA within each GNFA? If the solution sounds good to...
@abhinavsinha-adrino Yeah, `functools.lru_cache` is just a decorator on top of any function definition, and I don't think we need to define a `maxsize` (or we can set it to something...
@abhinavsinha-adrino That's fine! School should be a priority. I'll see if I can take a stab at it, and perhaps submit you a PR for you to review.
@abhinavsinha-adrino So I was able to implement a `GNFA.read_input_stepwise` method ([branch here](https://github.com/caleb531/automata/tree/gnfa-methods-from-nfa)), which works by converting the GNFA to an NFA, and calling ` read_input_stepwise` off that NFA. But something...