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

递归树 #14

Open
yihui opened this issue Nov 24, 2011 · 4 comments
Open

递归树 #14

yihui opened this issue Nov 24, 2011 · 4 comments
Labels

Comments

@yihui
Copy link
Owner

yihui commented Nov 24, 2011

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]))
@taiyun
Copy link

taiyun commented Dec 13, 2011

主动承认是我的马甲。。。

@yihui
Copy link
Owner Author

yihui commented Dec 13, 2011

切,马甲好玩吗?

@taiyun
Copy link

taiyun commented Dec 13, 2011

不太好玩,帮同学申请小间时候有用~

@yanping
Copy link

yanping commented Dec 14, 2011

你们居然在这里版聊 太有害身心健康了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants