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

📄 widthheight.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * Width and Height.  *  * The 'width' and 'height' variables contain the width and height  * of the display window as defined in the size() function.  */ size(200, 200);background(127);noStroke();for(int i=0; i<height; i+=20) {  fill(0);  rect(0, i, width, 10);  fill(255);  rect(i, 0, 10, height);}

⌨️ 快捷键说明

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