reflection.pde

来自「This is processing for java examples.」· PDE 代码 · 共 26 行

PDE
26
字号
/** * Reflection  * by Simon Greenwold.  *  * Vary the specular reflection component of a material * with the horizontal position of the mouse.  */void setup() {  size(640, 360, P3D);  noStroke();  colorMode(RGB, 1);  fill(0.4);}void draw() {  background(0);  translate(width / 2, height / 2);  // Set the specular color of lights that follow  lightSpecular(1, 1, 1);  directionalLight(0.8, 0.8, 0.8, 0, 0, -1);  float s = mouseX / float(width);  specular(s, s, s);  sphere(120);}

⌨️ 快捷键说明

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