-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Functions for asymmetric padding + dep bumps ghc7.6 + misc fixes #40
Conversation
No, it's not like doing |
Ah, ok. So a circle would become half a circle and half an ellipse for the other half. The absolute coordinate part still seems confusing. Some example use cases should make that clear. |
Hmm, do those extensions seem too long to anyone else? e.g. in the circle example above, presumably the envelope should be extended by 1 unit, but it looks like 2 (the diameter of the circle). |
I was thinking that it was:
for some scale factor |
If I test directly I'm not seeing what is in the images in the last comment:
|
Hmm... I'll look into this more carefully when I get back next week. In the meantime, here's the full code I was using to test, in case anyone else wants to take a look:
It's a bit ugly since I copy & pasted a bunch of it from some test code I had before. E.g. why all the mucking about with |
Also, perhaps something like |
Oh, sorry, I didn't see it was combined with the padR2 stuff. Anyway, I haven't forgotten about this and hope to take a closer look at some point in the nearish future. |
Yeah, me either - been busy with work + moving + etc. Wish github had a On Wed, Aug 29, 2012 at 8:56 PM, Brent Yorgey notifications@github.comwrote:
|
Well, in any case, this is one reason why you shouldn't open pull requests from master. =) I just read some advice (which seems good) to use your master branch only to track the remote master, and topic branches for all development. Once you're happy with some changes, you make sure your master is up-to-date, possibly rebase your topic branch on top of it, and open a pull request from your topic branch. Once your changes have been merged you get them back into your master just by pulling, and you can then delete your topic branch. The added benefit is that if for some reason your changes get cherry-picked or rebased or otherwise munged before being merged into the remote master, all you have to do is pull into master and throw away your topic branch -- you don't have to do any munging yourself to back stuff out before pulling. |
Superseded by: #60 |
No description provided.