Brian Mortenson

Results 7 comments of Brian Mortenson

@danmarshall I tried that already, and still got unpredictable results. I did manage to write something using `makerjs.model.findChains(model, { contain: { alternateDirection: true } })` that manages to correct the...

If a model never stores directions for arcs, that explains why my attempted fix didn't work. After finding chains, I turn them back into a model, and was thinking they...

Here's a straightforward function that runs in O(n) instead of O(n log n) and appears to avoid edge cases. I cloned the repo and built it locally, but the local...

Monkey patching that function doesn't work since `isChainClockwise` references it locally, but monkey patching `isChainClockwise` with a call to the new `isPointArrayClockwise` does work. That does look like an improvement!...

No problem, thank you for the library! I'm a developer that does my own graphic design sometimes, and was disappointed to find that Affinity Designer has no support for warping...

@LiamAttClarke thank you! I don't remember what I was wanting to do with it back in August, but that's good info to have.

@PatrickEGorman I was able to work around this by using a custom distance function with a special case for .com: ```ts import mailcheck from '@zootools/email-spell-checker' import distance from '@zootools/email-spell-checker/dist/lib/helpers/sift3Distance' const...