-
Notifications
You must be signed in to change notification settings - Fork 57
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
Issue with proportional spacing #13
Comments
The above doesn't work for multiscale... I'll do some more testing around the offset calculation. |
Ok, at least I understand the original offset calculation now... I had to account for the scale length selection, so I updated the method and the lines that called it:
|
Thanks for taking this on. It seems like you are on the right track to me, but I'd really like to know what @gmossessian thinks since it relates more closely to his recent additions than to my original work. There are some angled parking spaces along my street that are terrible to park. The are much too thin. The spacing between lines at the curb is what you would expect for a normal parking spot. But the distance along the perpendicular from one line to the other is much less because the lines are angled. I wonder if we need to account for the angle of the strings somewhere in this calculation. |
The existing calculations already account for the differences in distances between a perpendicular and angled nut, so that should be all set. I cleaned up my unnecessary lengthMode logic (as seen above) and put it in a branch in my forked repo... hopefully it's easier to understand my changes now. Thanks! |
Thanks for the addition of this functionality, hopefully I haven't misunderstood something...
Currently in fretfind.html, working_area is calculated by taking the "string width at the nut" value and subtracting the sum of all the strings. Since "string width at the nut" is from center-to-center between the first and last string, I believe working_area needs to account for the half of each string outside of that distance.
Also, I'm probably missing something on why the offset calculation is using the total length and "string width at the nut"... couldn't the next_space just be used as is?
I updated the following method locally and it seems to match my spreadsheet calculations:
I haven't contributed to a public repo before, but if the above makes sense and you'd like me to get a branch prepared, I can do that. Thanks!
The text was updated successfully, but these errors were encountered: