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

📄 largepage.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * Large Page.  *  * Saves one frame as a PDF with a size larger * than the screen. When PDF is used as the renderer * (the third parameter of size) the display window  * does not open. The file is saved to the sketch folder. */import processing.pdf.*;void setup() {  size(2000, 2000, PDF, "Line.pdf");}void draw() {  background(255);  stroke(0, 20);  strokeWeight(20.0);  line(200, 0, width/2, height);    exit();  // Quit the program}

⌨️ 快捷键说明

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