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

📄 lightsgl.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * LightsGL.  * Modified from an example by Simon Greenwold.  *  * Display a box with three different kinds of lights.  */import processing.opengl.*;void setup() {  size(1024, 768, OPENGL);  noStroke();}void draw() {  defineLights();  background(0);    for (int x = 0; x <= width; x += 100) {    for (int y = 0; y <= height; y += 100) {      pushMatrix();      translate(x, y);      rotateY(map(mouseX, 0, width, 0, PI));      rotateX(map(mouseY, 0, height, 0, PI));      box(90);      popMatrix();    }  }}void defineLights() {  // Orange point light on the right  pointLight(150, 100, 0,   // Color             200, -150, 0); // Position  // Blue directional light from the left  directionalLight(0, 102, 255, // Color                   1, 0, 0);    // The x-, y-, z-axis direction  // Yellow spotlight from the front  spotLight(255, 255, 109,  // Color            0, 40, 200,     // Position            0, -0.5, -0.5,  // Direction            PI / 2, 2);     // Angle, concentration}

⌨️ 快捷键说明

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