Guest User

Untitled

a guest
Jul 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import processing.opengl.*;
  2.  
  3. void setup(){
  4. size(500,500, P3D);
  5. noStroke();
  6. }
  7.  
  8. void draw(){
  9. background(0);
  10. directionalLight(255,255,255, 0,0,-1);
  11. translate(250, 250, 0);
  12. sphere(100);
  13. }
Add Comment
Please, Sign In to add comment