Skip to content
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

Curves should use named parameters. #61

Closed
mbostock opened this issue Mar 8, 2016 · 0 comments
Closed

Curves should use named parameters. #61

mbostock opened this issue Mar 8, 2016 · 0 comments
Assignees

Comments

@mbostock
Copy link
Member

mbostock commented Mar 8, 2016

For consistency with d3/d3-ease@f0ea8b5 (though the ease.ease part was later reverted) and d3/d3-interpolate@70ebb63, curves should also use named parameters rather than binding optional parameters in line.curve and area.curve. Specifically, code like this:

var line = d3.line().curve(d3.curveCardinal, 0.5);

Should be replaced with:

var line = d3.line().curve(d3.curveCardinal.tension(0.5));
@mbostock mbostock self-assigned this Mar 8, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant