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
http://cos.name/cn/topic/105708
drawTree <- function(x1, y1, angle, n, lwd, len, col) { if (n >= 1) { x2 <- x1 + cos(angle) * len[n] * 10 y2 <- y1 + sin(angle) * len[n] * 10 lines(c(x1, x2), c(y1, y2), lwd = lwd[n], col = col[n]) drawTree(x2, y2, angle - pi/9, n - 1, lwd, len, col) drawTree(x2, y2, angle + pi/9, n - 1, lwd, len, col) } } par(mar = c(0, 0, 0, 0)) plot(0, xlim = c(-260, 260), ylim = c(0, 450), type = "n", axes = F) drawTree(0, 0, angle = pi/2, n = 9, lwd = 1:9, len = 1:9, col = rev(terrain.colors(16)[1:9]))
The text was updated successfully, but these errors were encountered:
主动承认是我的马甲。。。
Sorry, something went wrong.
切,马甲好玩吗?
不太好玩,帮同学申请小间时候有用~
你们居然在这里版聊 太有害身心健康了
No branches or pull requests
http://cos.name/cn/topic/105708
The text was updated successfully, but these errors were encountered: