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

📄 variables.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * Variables.  *  * Variables are used for storing values. In this example, changing  * the values of variables 'a' and 'b' significantly change the composition.  */ size(200, 200);background(0);stroke(153);int a = 20;int b = 50;int c = a*8;int d = a*9;int e = b-a;int f = b*2;int g = f+e;line(a, f, b, g);line(b, e, b, g);line(b, e, d, c);line(a, e, d-e, c);

⌨️ 快捷键说明

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