📄 coordinates.pde
字号:
/** * Coordinates. * * All shapes drawn to the screen have a position that is specified as a coordinate. * All coordinates are measured as the distance from the origin in units of pixels. * The origin [0, 0] is the coordinate is in the upper left of the window * and the coordinate in the lower right is [width-1, height-1]. */// Sets the screen to be 200, 200, so the width of the window is 200 pixels// and the height of the window is 200 pixelssize(200, 200);background(0);noFill();stroke(255);// The two parameters of the point() method each specify coordinates.// This call to point() draws at the position [100, 100]point(width/2, height/2);// Draws to the position [100, 50]point(width/2, height/4); // It is also possible to specify a point with any parameter, // but only coordinates on the screen are visiblepoint(60, 30);point(60, 134);point(160, 50);point(280, -800);point(201, 100);// Coordinates are used for drawing all shapes, not just points.// Parameters for different methods are used for different purposes.// For example, the first two parameters to line() specify the coordinates of the // first point and the second two parameters specify the second pointstroke(204);line(0, 73, width, 73);// The first two parameters to rect() are coordinates// and the second two are the width and heightrect(110, 55, 40, 36);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -