We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I believe this fix has created a new issue: 52e069b
Everything was working perfectly fine previously, but now our code is producing errors. Consider the following code:
const radians = 5.7 const arc = d3shape.arc() .startAngle( 0 ) .endAngle( d => { return radians }) .innerRadius( d => { return 70 - ( d.index * 20 ) }) .outerRadius( d => { return 90 - ( d.index * 20 ) }) .cornerRadius( 10 )
We can all agree that there are 2 * Math.PI = ~6.28 radians in a circle. By changing the radians variable, this is the output of the arcs:
2 * Math.PI = ~6.28
radians
const radians = 5.7
const radians = 5.8
const radians = 5.9
const radians = 6.0
const radians = 6.1
const radians = 6.2
const radians = 6.3
The text was updated successfully, but these errors were encountered:
Confirmed present since 1.2.3.
Sorry, something went wrong.
b41c51e
Fixed in d3-shape@1.3.4, d3@5.8.1. Thanks for the report.
No branches or pull requests
I believe this fix has created a new issue: 52e069b
Everything was working perfectly fine previously, but now our code is producing errors. Consider the following code:
We can all agree that there are
2 * Math.PI = ~6.28
radians in a circle. By changing theradians
variable, this is the output of the arcs:const radians = 5.7
const radians = 5.8
const radians = 5.9
const radians = 6.0
const radians = 6.1
const radians = 6.2
const radians = 6.3
The text was updated successfully, but these errors were encountered: