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

📄 multipleframes.pde

📁 This is processing for java examples.
💻 PDE
字号:
/**  * Multiple Frames.  *  * Saves one PDF document of many frames drawn to the screen. * Starts the file when the mouse is pressed and end the file * when the mouse is released. */import processing.pdf.*;void setup() {  size(600, 600);  frameRate(24);  background(255);}void draw() {  stroke(0, 20);  strokeWeight(20.0);  line(mouseX, 0, width-mouseY, height);}void mousePressed() {  beginRecord(PDF, "Lines.pdf");   background(255);}void mouseReleased() {  endRecord();  background(255);}

⌨️ 快捷键说明

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