oneframe.pde
来自「This is processing for java examples.」· PDE 代码 · 共 24 行
PDE
24 行
/** * One Frame. * * Saves one PDF with the contents of the display window. * Because this example uses beginRecord, the image is shown * on the display window and is saved to the file. */import processing.pdf.*;size(600, 600);beginRecord(PDF, "line.pdf"); background(255);stroke(0, 20);strokeWeight(20.0);line(200, 0, 400, height);endRecord();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?