Adam Wulf

Results 161 comments of Adam Wulf

Adding another link that has helped me with line numbers: https://github.com/alldritt/TextKit_LineNumbers it's an old repo but still works like a charm

Do you see any errors in the javascript console when it fails to load?

Instead of `.branch(1.2.4)` you'll want to use `.package(url: "https://github.com/adamwulf/ClippingBezier.git", from: "1.2.4")`

Thanks for sending in this error case - it's very helpful for me to track down bugs with test cases like this. Unfortunately, I don't have a quick fix for...

I believe I can make the transformed path exactly match the pre-transformed path by sending the control points through the inverse-transform. that way the transformed control points will show in...

I think the correct strategy is to check for existing stroke's `waitingForEvent:` immediately if either `!strokeForEvent` _or_ `[[strokeForEvent event] isSameTouchAsEvent:event]`. This way a stroke is found if the current active...

I haven't started work on this one yet, it'd be a great place for someone to jump in and add it. Very old versions of JotUI had interpolated rotation, but...

Yep! check out the loadState: method to load from disk, and use the exportImageTo:exportThumbnailTo:andStateTo:withThumbnailScale:onComplete: to save to disk. Loose Leaf handles save/load in the https://github.com/adamwulf/loose-leaf/blob/master/Project/LooseLeaf/MMEditablePaperView.m class as an example.

Instead of saving all drawings to the same directory, you should be saving each to their own directory. Use the delegate methods during load/save, and return different directories for each...

ah - if you're renaming the ink/thumb pngs, then it should be ok to keep the strokedata all in the same directory. they'll be unique for each drawing. though i...