⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recursion.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * Recursion.  *  * A demonstration of recursion, which means functions call themselves.  * Notice how the drawCircle() function calls itself at the end of its block.  * It continues to do this until the variable "level" is equal to 1.  */ void setup() {  size(200, 200);  noStroke();  smooth();  noLoop();}void draw() {  drawCircle(126, 170, 6);}void drawCircle(int x, int radius, int level) {                      float tt = 126 * level/4.0;  fill(tt);  ellipse(x, 100, radius*2, radius*2);        if(level > 1) {    level = level - 1;    drawCircle(x - radius/2, radius/2, level);    drawCircle(x + radius/2, radius/2, level);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -