-
Notifications
You must be signed in to change notification settings - Fork 311
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
Monotone curves which are monotonic in y, not x? #57
Comments
Sorted by y-value, or not sorted by x-value? If you are you asking whether the line generator should automatically sort the input the x-value, the answer is definitely no because there are some cases where you don’t want this behavior. However, I could see it being useful to have a line.sort accessor which defaults to null, and lets you specify a comparator. If the comparator is specified, the data would be sorted using the specified comparator before the points were generated and passed to the curve. (I could also imagine a sortX or sortY accessor which sorts on the computed points, but then you’d have to buffer the points and it’d be a bit more work, and I think sorting the data is probably more sufficient.) The line generator would need to sort a copy of the data, though, so as to avoid modifying the input. So even if we added this, it’d probably be better if the caller sorted the data before passing it to the line generator. So, I guess I’m inclined to not add this feature since it perhaps encourages inefficient code. |
Sorry, my question was not clearly stated. |
Okay, so your query is specifically in regards to curveMonotone, then, which “[assumes] that the input data is monotonic in x.” We could have distinct curveMonotoneX and curveMonotoneY that are equivalent except one requires monotonicity in x while the other requires monotonicity in y. You can also workaround this restriction by switching the x and y of your line as input to the line generator, and then transform the resulting output (using an SVG or Canvas transform) by reflecting over the y=x line. But that’s a bit tedious. |
Fixed in 0.5. |
Do you have any plan to support line generator of data which is sorted by y-value ?
The text was updated successfully, but these errors were encountered: