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
Essentially for three reasons:
circle(x=100, y=100)
circle(100, 100)
circle(100, 50, 20)
circle(50)
circle(r=50)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Essentially for three reasons:
circle(x=100, y=100)
is easier to explain thancircle(100, 100)
for first time learners, as it's clearer that x and y values are being assignedcircle(100, 50, 20)
can confuse beginners, as they could misremember the order of argscircle(50)
andcircle(r=50)
look very similar but result in completely different resultsThe text was updated successfully, but these errors were encountered: